Revision: 1533
http://geeqie.svn.sourceforge.net/geeqie/?rev=1533&view=rev
Author: zas_
Date: 2009-03-15 07:07:52 +0000 (Sun, 15 Mar 2009)
Log Message:
-----------
gint -> gboolean.
Modified Paths:
--------------
trunk/src/cache_maint.c
trunk/src/format_canon.c
trunk/src/format_raw.c
trunk/src/fullscreen.c
trunk/src/layout.c
trunk/src/main.c
trunk/src/pixbuf_util.c
trunk/src/preferences.c
trunk/src/print.c
trunk/src/remote.c
trunk/src/search.c
trunk/src/thumb_standard.c
trunk/src/trash.c
trunk/src/ui_fileops.c
trunk/src/ui_menu.c
trunk/src/ui_pathsel.c
trunk/src/ui_tabcomp.c
trunk/src/ui_tree_edit.c
trunk/src/ui_utildlg.c
trunk/src/view_dir.c
trunk/src/view_dir_list.c
trunk/src/view_dir_tree.c
trunk/src/view_file.c
trunk/src/view_file_icon.c
trunk/src/view_file_list.c
Modified: trunk/src/cache_maint.c
===================================================================
--- trunk/src/cache_maint.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/cache_maint.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -360,7 +360,7 @@
GList *dlist = NULL;
FileData *dir_fd;
GList *flist = NULL;
- gint still_have_a_file = FALSE;
+ gboolean still_have_a_file = FALSE;
DEBUG_1("maintainance check: %s", dir);
@@ -434,7 +434,7 @@
GList *list = NULL;
gchar *cachedir;
FileData *cachedir_fd;
- gint still_have_a_file = FALSE;
+ gboolean still_have_a_file = FALSE;
GList *work;
cachedir = g_build_filename(dir, GQ_CACHE_LOCAL_THUMB, NULL);
Modified: trunk/src/format_canon.c
===================================================================
--- trunk/src/format_canon.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/format_canon.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -95,7 +95,7 @@
static gint canon_cr2_tiff_table(guchar *data, const guint len, guint offset,
ExifByteOrder bo,
guint *image_offset)
{
- gint jpeg_encoding = FALSE;
+ gboolean jpeg_encoding = FALSE;
guint count;
guint i;
Modified: trunk/src/format_raw.c
===================================================================
--- trunk/src/format_raw.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/format_raw.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -310,7 +310,7 @@
if (path)
{
const gchar *ext;
- gint match = FALSE;
+ gboolean match = FALSE;
gint i;
ext = strrchr(path, '.');
Modified: trunk/src/fullscreen.c
===================================================================
--- trunk/src/fullscreen.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/fullscreen.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -180,8 +180,8 @@
static void fullscreen_saver_deactivate(void)
{
- static gint checked = FALSE;
- static gint found = FALSE;
+ static gboolean checked = FALSE;
+ static gboolean found = FALSE;
if (!checked)
{
Modified: trunk/src/layout.c
===================================================================
--- trunk/src/layout.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/layout.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -2124,8 +2124,8 @@
void layout_apply_options(LayoutWindow *lw, LayoutOptions *lop)
{
- gint refresh_style;
- gint refresh_lists;
+ gboolean refresh_style;
+ gboolean refresh_lists;
if (!layout_valid(&lw)) return;
/* FIXME: add other options too */
Modified: trunk/src/main.c
===================================================================
--- trunk/src/main.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/main.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -198,7 +198,7 @@
GList *list = NULL;
GList *remote_list = NULL;
GList *remote_errors = NULL;
- gint remote_do = FALSE;
+ gboolean remote_do = FALSE;
gchar *first_dir = NULL;
command_line = g_new0(CommandLine, 1);
Modified: trunk/src/pixbuf_util.c
===================================================================
--- trunk/src/pixbuf_util.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/pixbuf_util.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -860,7 +860,7 @@
gint slope1_x, slope1_y;
gint y;
gint t;
- gint middle = FALSE;
+ gboolean middle = FALSE;
if (!pb) return;
@@ -961,7 +961,7 @@
gdouble x1, gdouble y1, gdouble x2, gdouble y2,
gdouble *rx1, gdouble *ry1, gdouble *rx2, gdouble
*ry2)
{
- gint flip = FALSE;
+ gboolean flip = FALSE;
gdouble d;
if (x1 > x2)
Modified: trunk/src/preferences.c
===================================================================
--- trunk/src/preferences.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/preferences.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -219,7 +219,7 @@
static void config_window_apply(void)
{
gint i;
- gint refresh = FALSE;
+ gboolean refresh = FALSE;
// config_parse_editor_entries(editor_name_entry, editor_command_entry);
// layout_edit_update_all();
Modified: trunk/src/print.c
===================================================================
--- trunk/src/print.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/print.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -1525,7 +1525,7 @@
static gint print_job_rgb_page_done(PrintWindow *pw)
{
gchar *pathl;
- gint ret = FALSE;
+ gboolean ret = FALSE;
if (!pw->job_pixbuf) return FALSE;
@@ -1624,7 +1624,7 @@
if (dpi < 25.0)
{
- static gint warned = FALSE;
+ static gboolean warned = FALSE;
gdouble fallback_dpi = 96.0;
if (!warned)
@@ -1909,7 +1909,7 @@
gdouble x, gdouble y, gdouble w, gdouble h,
gdouble offx, gdouble offy)
{
- gint success = FALSE;
+ gboolean success = FALSE;
if (w <= 0.0 || h <= 0.0) return TRUE;
@@ -1933,7 +1933,7 @@
gdouble x, gdouble y, gdouble width,
guint8 r, guint8 g, guint8 b)
{
- gint success = TRUE;
+ gboolean success = TRUE;
if (!text) return TRUE;
@@ -2034,8 +2034,8 @@
gint sw, gint sh, gint proof)
{
GString *string;
- gint space = FALSE;
- gint newline = FALSE;
+ gboolean space = FALSE;
+ gboolean newline = FALSE;
gint ret;
if (pw->text_fields == 0) return TRUE;
@@ -2097,7 +2097,7 @@
{
PrintWindow *pw = data;
GdkPixbuf *pixbuf;
- gint success = TRUE;
+ gboolean success = TRUE;
pixbuf = image_loader_get_pixbuf(il);
if (pixbuf)
@@ -2236,7 +2236,7 @@
gdouble proof_w, proof_h;
gdouble icon_w, icon_h;
gdouble scale;
- gint success = TRUE;
+ gboolean success = TRUE;
if (pw->proof_columns < 1 || pw->proof_rows < 1)
{
@@ -2436,7 +2436,7 @@
static gint print_job_init(PrintWindow *pw)
{
- gint success = FALSE;
+ gboolean success = FALSE;
pw->job_page = 0;
@@ -2459,7 +2459,7 @@
static gint print_job_finish(PrintWindow *pw)
{
- gint success = FALSE;
+ gboolean success = FALSE;
switch (pw->job_format)
{
@@ -3046,9 +3046,9 @@
static void print_output_set(PrintWindow *pw, PrintOutput output)
{
- gint use_file = FALSE;
- gint use_custom = FALSE;
- gint use_format = FALSE;
+ gboolean use_file = FALSE;
+ gboolean use_custom = FALSE;
+ gboolean use_format = FALSE;
pw->output = output;
Modified: trunk/src/remote.c
===================================================================
--- trunk/src/remote.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/remote.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -294,7 +294,7 @@
static gint remote_client_send(RemoteConnection *rc, const gchar *text)
{
struct sigaction new_action, old_action;
- gint ret = FALSE;
+ gboolean ret = FALSE;
if (!rc || rc->server) return FALSE;
if (!text) return TRUE;
@@ -521,7 +521,7 @@
static void gr_list_add(const gchar *text, gpointer data)
{
RemoteData *remote_data = data;
- gint new = TRUE;
+ gboolean new = TRUE;
if (!remote_data->command_collection)
{
@@ -595,7 +595,7 @@
static RemoteCommandEntry *remote_command_find(const gchar *text, const gchar
**offset)
{
- gint match = FALSE;
+ gboolean match = FALSE;
gint i;
i = 0;
@@ -697,7 +697,7 @@
GList *cmd_list, GList *collection_list)
{
RemoteConnection *rc;
- gint started = FALSE;
+ gboolean started = FALSE;
gchar *buf;
buf = g_build_filename(get_rc_dir(), ".command", NULL);
@@ -707,7 +707,7 @@
GString *command;
GList *work;
gint retry_count = 12;
- gint blank = FALSE;
+ gboolean blank = FALSE;
printf_term(_("Remote %s not running, starting..."),
GQ_APPNAME);
@@ -763,8 +763,8 @@
{
GList *work;
const gchar *prefix;
- gint use_path = TRUE;
- gint sent = FALSE;
+ gboolean use_path = TRUE;
+ gboolean sent = FALSE;
work = remote_list;
while (work)
Modified: trunk/src/search.c
===================================================================
--- trunk/src/search.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/search.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -371,7 +371,7 @@
GtkTreeSelection *selection;
GList *slist;
GList *work;
- gint found = FALSE;
+ gboolean found = FALSE;
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(sd->result_view));
slist = gtk_tree_selection_get_selected_rows(selection, &store);
@@ -1195,7 +1195,7 @@
static gint search_result_keypress_cb(GtkWidget *widget, GdkEventKey *event,
gpointer data)
{
SearchData *sd = data;
- gint stop_signal = FALSE;
+ gboolean stop_signal = FALSE;
GtkTreeModel *store;
GtkTreeSelection *selection;
GList *slist;
@@ -1338,7 +1338,7 @@
static gint search_window_keypress_cb(GtkWidget *widget, GdkEventKey *event,
gpointer data)
{
SearchData *sd = data;
- gint stop_signal = FALSE;
+ gboolean stop_signal = FALSE;
if (event->state & GDK_CONTROL_MASK)
{
@@ -1573,9 +1573,9 @@
static gint search_file_do_extra(SearchData *sd, FileData *fd, gint *match,
gint *width, gint *height, gint *simval)
{
- gint new_data = FALSE;
- gint tmatch = TRUE;
- gint tested = FALSE;
+ gboolean new_data = FALSE;
+ gboolean tmatch = TRUE;
+ gboolean tested = FALSE;
if (!sd->img_cd)
{
@@ -1684,9 +1684,9 @@
static gint search_file_next(SearchData *sd)
{
FileData *fd;
- gint match = TRUE;
- gint tested = FALSE;
- gint extra_only = FALSE;
+ gboolean match = TRUE;
+ gboolean tested = FALSE;
+ gboolean extra_only = FALSE;
gint width = 0;
gint height = 0;
gint sim = 0;
@@ -1817,7 +1817,7 @@
if (sd->match_keywords == SEARCH_MATCH_ALL)
{
- gint found = TRUE;
+ gboolean found = TRUE;
needle = sd->search_keyword_list;
while (needle && found)
@@ -1837,7 +1837,7 @@
}
else if (sd->match_keywords == SEARCH_MATCH_ANY)
{
- gint found = FALSE;
+ gboolean found = FALSE;
needle = sd->search_keyword_list;
while (needle && !found)
@@ -1856,7 +1856,7 @@
}
else if (sd->match_keywords == SEARCH_MATCH_NONE)
{
- gint found = FALSE;
+ gboolean found = FALSE;
needle = sd->search_keyword_list;
while (needle && !found)
@@ -1991,7 +1991,7 @@
{
GList *list = NULL;
GList *dlist = NULL;
- gint success = FALSE;
+ gboolean success = FALSE;
sd->search_done_list = g_list_prepend(sd->search_done_list, fd);
Modified: trunk/src/thumb_standard.c
===================================================================
--- trunk/src/thumb_standard.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/thumb_standard.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -197,7 +197,7 @@
static gint thumb_loader_std_fail_check(ThumbLoaderStd *tl)
{
gchar *fail_path;
- gint result = FALSE;
+ gboolean result = FALSE;
fail_path = thumb_loader_std_cache_path(tl, FALSE, NULL, TRUE);
if (isfile(fail_path))
@@ -776,7 +776,7 @@
{
ThumbValidate *tv = data;
GdkPixbuf *pixbuf;
- gint valid = FALSE;
+ gboolean valid = FALSE;
/* this function is called on success, so the pixbuf should not be a
fallback*/
pixbuf = thumb_loader_std_get_pixbuf(tv->tl);
Modified: trunk/src/trash.c
===================================================================
--- trunk/src/trash.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/trash.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -33,8 +33,8 @@
gint64 total = 0;
GList *list;
GList *work;
- gint sorted = FALSE;
- gint warned = FALSE;
+ gboolean sorted = FALSE;
+ gboolean warned = FALSE;
FileData *dir_fd;
dir_fd = file_data_new_simple(options->file_ops.safe_delete_path);
@@ -126,7 +126,7 @@
{
static GenericDialog *gd = NULL;
gchar *result = NULL;
- gint success = TRUE;
+ gboolean success = TRUE;
if (!isfile(path)) return FALSE;
Modified: trunk/src/ui_fileops.c
===================================================================
--- trunk/src/ui_fileops.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/ui_fileops.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -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')
{
Modified: trunk/src/ui_menu.c
===================================================================
--- trunk/src/ui_menu.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/ui_menu.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -165,7 +165,7 @@
gint popup_menu_position_clamp(GtkMenu *menu, gint *x, gint *y, gint height)
{
- gint adjusted = FALSE;
+ gboolean adjusted = FALSE;
gint w, h;
gint xw, xh;
Modified: trunk/src/ui_pathsel.c
===================================================================
--- trunk/src/ui_pathsel.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/ui_pathsel.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -735,7 +735,7 @@
gchar *path;
gchar *buf;
const gchar *tmp;
- gint from_text = FALSE;
+ gboolean from_text = FALSE;
tmp = gtk_entry_get_text(GTK_ENTRY(dd->entry));
if (!isname(tmp))
Modified: trunk/src/ui_tabcomp.c
===================================================================
--- trunk/src/ui_tabcomp.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/ui_tabcomp.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -409,7 +409,7 @@
const gchar *entry_file;
gchar *entry_dir;
gchar *ptr;
- gint home_exp = FALSE;
+ gboolean home_exp = FALSE;
if (entry_text[0] == '\0')
{
@@ -547,7 +547,7 @@
else
{
gsize c = strlen(entry_file);
- gint done = FALSE;
+ gboolean done = FALSE;
gchar *test_file = poss->data;
while (!done)
@@ -602,7 +602,7 @@
static gint tab_completion_key_pressed(GtkWidget *widget, GdkEventKey *event,
gpointer data)
{
TabCompData *td = data;
- gint stop_signal = FALSE;
+ gboolean stop_signal = FALSE;
switch (event->keyval)
{
Modified: trunk/src/ui_tree_edit.c
===================================================================
--- trunk/src/ui_tree_edit.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/ui_tree_edit.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -410,7 +410,7 @@
GtkTreeModel *store;
GtkTreePath *tpath;
GtkTreePath *fpath;
- gint move = FALSE;
+ gboolean move = FALSE;
if (!iter) return FALSE;
Modified: trunk/src/ui_utildlg.c
===================================================================
--- trunk/src/ui_utildlg.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/ui_utildlg.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -125,7 +125,7 @@
{
GtkSettings *settings;
GObjectClass *klass;
- gint alternative_order = FALSE;
+ gboolean alternative_order = FALSE;
settings = gtk_settings_get_for_screen(gtk_widget_get_screen(widget));
klass = G_OBJECT_CLASS(GTK_SETTINGS_GET_CLASS(settings));
Modified: trunk/src/view_dir.c
===================================================================
--- trunk/src/view_dir.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/view_dir.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -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)
{
Modified: trunk/src/view_dir_list.c
===================================================================
--- trunk/src/view_dir_list.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/view_dir_list.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -188,7 +188,7 @@
GdkPixbuf *pixbuf;
const gchar *date = "";
fd = work->data;
- gint done = FALSE;
+ gboolean done = FALSE;
if (access_file(fd->path, R_OK | X_OK) && fd->name)
{
Modified: trunk/src/view_dir_tree.c
===================================================================
--- trunk/src/view_dir_tree.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/view_dir_tree.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -665,7 +665,7 @@
*----------------------------------------------------------------------------
*/
-static gint selection_is_ok = FALSE;
+static gboolean selection_is_ok = FALSE;
static gboolean vdtree_select_cb(GtkTreeSelection *selection, GtkTreeModel
*store, GtkTreePath *tpath,
gboolean path_currently_selected, gpointer
data)
Modified: trunk/src/view_file.c
===================================================================
--- trunk/src/view_file.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/view_file.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -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)
{
Modified: trunk/src/view_file_icon.c
===================================================================
--- trunk/src/view_file_icon.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/view_file_icon.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -1962,7 +1962,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);
@@ -2162,7 +2162,7 @@
static gint vficon_refresh_real(ViewFile *vf, gint keep_position)
{
- gint ret = TRUE;
+ gboolean ret = TRUE;
GList *work, *work_fd;
IconData *focus_id;
GList *new_filelist = NULL;
Modified: trunk/src/view_file_list.c
===================================================================
--- trunk/src/view_file_list.c 2009-03-14 23:26:42 UTC (rev 1532)
+++ trunk/src/view_file_list.c 2009-03-15 07:07:52 UTC (rev 1533)
@@ -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;
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
_______________________________________________
Geeqie-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geeqie-svn