org.guifications.plugins: b9dfb06c3af40f88bc61f045ac6fc358d44decfa

nosnilmot at guifications.org nosnilmot at guifications.org
Wed Nov 28 08:20:11 CST 2007


-----------------------------------------------------------------
Revision: b9dfb06c3af40f88bc61f045ac6fc358d44decfa
Ancestor: 1f3333f96db609699aeb757e83c00d9898cc62c9
Author: nosnilmot at guifications.org
Date: 2007-11-28T14:15:00
Branch: org.guifications.plugins

Modified files:
        timelog/range-widget.c

ChangeLog: 

Fix use of unsigned ints that might actually be signed

-----------------------------------------------------------------
This revision's diffstat output:
 range-widget.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
-------------- next part --------------
============================================================
--- timelog/range-widget.c	f324a3a6897224d1791d16fc9c9118e4f55b5d7a
+++ timelog/range-widget.c	bfab6edec95f0910a1a88a93edd4b7da9b9f9a28
@@ -52,7 +52,8 @@ calendar_update(GtkWidget *calendar, gin
 		{ 0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
 	};
 
-	guint day, month, year;
+	gint day, month;
+	guint year;
 	gint days_in_month;
 	gboolean leap_year;
 


More information about the Plugins-commits mailing list