comparison src/view_file.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 a1b68aca7289
children d6a7fb4b8e7c
comparison
equal deleted inserted replaced
735:df6c11709106 736:a7289f9e8d29
40 GtkWidget *vf_pop_menu(ViewFile *vf); 40 GtkWidget *vf_pop_menu(ViewFile *vf);
41 41
42 FileData *vf_index_get_data(ViewFile *vf, gint row); 42 FileData *vf_index_get_data(ViewFile *vf, gint row);
43 gint vf_index_by_path(ViewFile *vf, const gchar *path); 43 gint vf_index_by_path(ViewFile *vf, const gchar *path);
44 gint vf_index_by_fd(ViewFile *vf, FileData *in_fd); 44 gint vf_index_by_fd(ViewFile *vf, FileData *in_fd);
45 gint vf_count(ViewFile *vf, gint64 *bytes); 45 guint vf_count(ViewFile *vf, gint64 *bytes);
46 GList *vf_get_list(ViewFile *vf); 46 GList *vf_get_list(ViewFile *vf);
47 47
48 gint vf_index_is_selected(ViewFile *vf, gint row); 48 gint vf_index_is_selected(ViewFile *vf, gint row);
49 gint vf_selection_count(ViewFile *vf, gint64 *bytes); 49 guint vf_selection_count(ViewFile *vf, gint64 *bytes);
50 GList *vf_selection_get_list(ViewFile *vf); 50 GList *vf_selection_get_list(ViewFile *vf);
51 GList *vf_selection_get_list_by_index(ViewFile *vf); 51 GList *vf_selection_get_list_by_index(ViewFile *vf);
52 52
53 void vf_select_all(ViewFile *vf); 53 void vf_select_all(ViewFile *vf);
54 void vf_select_none(ViewFile *vf); 54 void vf_select_none(ViewFile *vf);