diff src/view_file_list.c @ 1437:a3d3208b0c50

gint -> gboolean.
author zas_
date Sun, 15 Mar 2009 07:07:52 +0000
parents 249bf204004a
children bc3f5c0432f6
line wrap: on
line diff
--- a/src/view_file_list.c	Sat Mar 14 23:26:42 2009 +0000
+++ b/src/view_file_list.c	Sun Mar 15 07:07:52 2009 +0000
@@ -851,7 +851,7 @@
 		{
 		gint match;
 		FileData *fd = work->data;
-		gint done = FALSE;
+		gboolean done = FALSE;
 
 		while (!done)
 			{
@@ -1124,7 +1124,7 @@
 		{
 		GtkTreeModel *store;
 		GtkTreeIter iter;
-		gint valid = TRUE;
+		gboolean valid = TRUE;
 
 		store = gtk_tree_view_get_model(GTK_TREE_VIEW(vf->listview));
 		gtk_tree_model_get_iter(store, &iter, tpath);
@@ -1286,7 +1286,7 @@
 	GtkTreeSelection *selection;
 	GList *slist;
 	GList *work;
-	gint found = FALSE;
+	gboolean found = FALSE;
 
 	selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(vf->listview));
 	slist = gtk_tree_selection_get_selected_rows(selection, &store);
@@ -1724,7 +1724,7 @@
 gint vflist_refresh(ViewFile *vf)
 {
 	GList *old_list;
-	gint ret = TRUE;
+	gboolean ret = TRUE;
 
 	old_list = vf->list;
 	vf->list = NULL;