Mercurial > geeqie
comparison src/layout.h @ 736:a7289f9e8d29
Fix signed vs unsigned warnings.
In most cases, gint was used instead of guint.
author | zas_ |
---|---|
date | Thu, 22 May 2008 13:00:45 +0000 |
parents | 6e9413e92be5 |
children | d6a7fb4b8e7c |
comparison
equal
deleted
inserted
replaced
735:df6c11709106 | 736:a7289f9e8d29 |
---|---|
36 void layout_status_update_info(LayoutWindow *lw, const gchar *text); | 36 void layout_status_update_info(LayoutWindow *lw, const gchar *text); |
37 void layout_status_update_image(LayoutWindow *lw); | 37 void layout_status_update_image(LayoutWindow *lw); |
38 void layout_status_update_all(LayoutWindow *lw); | 38 void layout_status_update_all(LayoutWindow *lw); |
39 | 39 |
40 GList *layout_list(LayoutWindow *lw); | 40 GList *layout_list(LayoutWindow *lw); |
41 gint layout_list_count(LayoutWindow *lw, gint64 *bytes); | 41 guint layout_list_count(LayoutWindow *lw, gint64 *bytes); |
42 FileData *layout_list_get_fd(LayoutWindow *lw, gint index); | 42 FileData *layout_list_get_fd(LayoutWindow *lw, gint index); |
43 gint layout_list_get_index(LayoutWindow *lw, const gchar *path); | 43 gint layout_list_get_index(LayoutWindow *lw, const gchar *path); |
44 void layout_list_sync_fd(LayoutWindow *lw, FileData *fd); | 44 void layout_list_sync_fd(LayoutWindow *lw, FileData *fd); |
45 | 45 |
46 GList *layout_selection_list(LayoutWindow *lw); | 46 GList *layout_selection_list(LayoutWindow *lw); |
47 /* return list of pointers to int for selection */ | 47 /* return list of pointers to int for selection */ |
48 GList *layout_selection_list_by_index(LayoutWindow *lw); | 48 GList *layout_selection_list_by_index(LayoutWindow *lw); |
49 gint layout_selection_count(LayoutWindow *lw, gint64 *bytes); | 49 guint layout_selection_count(LayoutWindow *lw, gint64 *bytes); |
50 void layout_select_all(LayoutWindow *lw); | 50 void layout_select_all(LayoutWindow *lw); |
51 void layout_select_none(LayoutWindow *lw); | 51 void layout_select_none(LayoutWindow *lw); |
52 void layout_select_invert(LayoutWindow *lw); | 52 void layout_select_invert(LayoutWindow *lw); |
53 | 53 |
54 void layout_mark_to_selection(LayoutWindow *lw, gint mark, MarkToSelectionMode mode); | 54 void layout_mark_to_selection(LayoutWindow *lw, gint mark, MarkToSelectionMode mode); |