diff src/ui_fileops.c @ 1437:a3d3208b0c50

gint -> gboolean.
author zas_
date Sun, 15 Mar 2009 07:07:52 +0000
parents 4da6d326919c
children 89dedc61b1bd
line wrap: on
line diff
--- a/src/ui_fileops.c	Sat Mar 14 23:26:42 2009 +0000
+++ b/src/ui_fileops.c	Sun Mar 15 07:07:52 2009 +0000
@@ -69,7 +69,7 @@
 
 static void encoding_dialog(const gchar *path)
 {
-	static gint warned_user = FALSE;
+	static gboolean warned_user = FALSE;
 	GenericDialog *gd;
 	GString *string;
 	const gchar *lc;
@@ -418,7 +418,7 @@
 
 gint filetime_set(const gchar *s, time_t tval)
 {
-	gint ret = FALSE;
+	gboolean ret = FALSE;
 
 	if (tval > 0)
 		{
@@ -519,7 +519,7 @@
 {
 	struct stat st;
 	gchar *sl, *tl;
-	gint ret = FALSE;
+	gboolean ret = FALSE;
 
 	if (!s || !t) return FALSE;
 
@@ -615,7 +615,7 @@
 gint move_file(const gchar *s, const gchar *t)
 {
 	gchar *sl, *tl;
-	gint ret = TRUE;
+	gboolean ret = TRUE;
 
 	if (!s || !t) return FALSE;
 
@@ -868,7 +868,7 @@
 	gchar *path;
 	gchar *namel;
 	gint p, l;
-	gint ret = FALSE;
+	gboolean ret = FALSE;
 
 	if (!name) return FALSE;
 	path = g_strdup(getenv("PATH"));
@@ -909,7 +909,7 @@
 			p++;
 			if (p[0] == G_DIR_SEPARATOR || p[0] == '\0')
 				{
-				gint end = TRUE;
+				gboolean end = TRUE;
 
 				if (p[0] != '\0')
 					{