comparison src/ui_misc.c @ 64:04ff0df3ad2f

Mon Aug 15 17:13:57 2005 John Ellis <johne@verizon.net> * collect-table.c, dupe.c, exif.c, img-view.c info.c, layout_image.c, md5-util.[ch], pan-view.c, remote.c, search.c, thumb_standard.c, ui_bookmark.c, ui_misc.c, ui_pathsel.c, view_dir_list.c, view_dir_tree.c, view_file_icon.c, view_file_list.c: Fix signedness warnings in gcc 4.0.
author gqview
date Mon, 15 Aug 2005 21:41:20 +0000
parents 6281cc38e5ca
children 2099ee3f9a8d
comparison
equal deleted inserted replaced
63:e29c291e106b 64:04ff0df3ad2f
897 return FALSE; 897 return FALSE;
898 } 898 }
899 899
900 static void date_selection_popup_sync(DateSelection *ds) 900 static void date_selection_popup_sync(DateSelection *ds)
901 { 901 {
902 gint day, month, year; 902 guint day, month, year;
903 903
904 gtk_calendar_get_date(GTK_CALENDAR(ds->calendar), &year, &month, &day); 904 gtk_calendar_get_date(GTK_CALENDAR(ds->calendar), &year, &month, &day);
905 date_selection_set(ds->box, day, month + 1, year); 905 date_selection_set(ds->box, day, month + 1, year);
906 } 906 }
907 907