diff src/view_dir.c @ 1437:a3d3208b0c50

gint -> gboolean.
author zas_
date Sun, 15 Mar 2009 07:07:52 +0000
parents cf4029d10d38
children 67b40740122e
line wrap: on
line diff
--- a/src/view_dir.c	Sat Mar 14 23:26:42 2009 +0000
+++ b/src/view_dir.c	Sun Mar 15 07:07:52 2009 +0000
@@ -120,7 +120,7 @@
 
 gint vd_set_fd(ViewDir *vd, FileData *dir_fd)
 {
-	gint ret = FALSE;
+	gboolean ret = FALSE;
 
 	file_data_unregister_notify_func(vd_notify_cb, vd);
 
@@ -168,7 +168,7 @@
 
 gint vd_find_row(ViewDir *vd, FileData *fd, GtkTreeIter *iter)
 {
-	gint ret = FALSE;
+	gboolean ret = FALSE;
 
 	switch (vd->type)
 	{
@@ -557,8 +557,8 @@
 	GtkWidget *submenu;
 	GtkWidget *item;
 	gint active;
-	gint rename_delete_active = FALSE;
-	gint new_folder_active = FALSE;
+	gboolean rename_delete_active = FALSE;
+	gboolean new_folder_active = FALSE;
 	gint i;
 
 	active = (fd != NULL);
@@ -746,7 +746,7 @@
 		{
 		GList *list;
 		gint active;
-		gint done = FALSE;
+		gboolean done = FALSE;
 
 		list = uri_filelist_from_text((gchar *)selection_data->data, TRUE);
 		if (!list) return;
@@ -994,7 +994,7 @@
 gint vd_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data)
 {
 	ViewDir *vd = data;
-	gint ret = FALSE;
+	gboolean ret = FALSE;
 
 	switch (vd->type)
 	{
@@ -1008,7 +1008,7 @@
 gint vd_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data)
 {
 	ViewDir *vd = data;
-	gint ret = FALSE;
+	gboolean ret = FALSE;
 
 	switch (vd->type)
 	{