diff src/view_file.c @ 1437:a3d3208b0c50

gint -> gboolean.
author zas_
date Sun, 15 Mar 2009 07:07:52 +0000
parents cf4029d10d38
children bc3f5c0432f6
line wrap: on
line diff
--- a/src/view_file.c	Sat Mar 14 23:26:42 2009 +0000
+++ b/src/view_file.c	Sun Mar 15 07:07:52 2009 +0000
@@ -115,7 +115,7 @@
 static gint vf_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data)
 {
 	ViewFile *vf = data;
-	gint ret = FALSE;
+	gboolean ret = FALSE;
 
 	switch (vf->type)
 	{
@@ -135,7 +135,7 @@
 static gint vf_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data)
 {
 	ViewFile *vf = data;
-	gint ret = FALSE;
+	gboolean ret = FALSE;
 
 	switch (vf->type)
 	{
@@ -149,7 +149,7 @@
 static gint vf_release_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data)
 {
 	ViewFile *vf = data;
-	gint ret = FALSE;
+	gboolean ret = FALSE;
 
 	switch (vf->type)
 	{
@@ -603,7 +603,7 @@
 
 gint vf_refresh(ViewFile *vf)
 {
-	gint ret = FALSE;
+	gboolean ret = FALSE;
 
 	switch (vf->type)
 	{
@@ -616,7 +616,7 @@
 
 gint vf_set_fd(ViewFile *vf, FileData *dir_fd)
 {
-	gint ret = FALSE;
+	gboolean ret = FALSE;
 
 	switch (vf->type)
 	{