[Xfce4-commits] r29966 - xfcalendar/trunk/src

Juha Kautto juha at xfce.org
Fri May 15 10:10:21 CEST 2009


Author: juha
Date: 2009-05-15 08:10:21 +0000 (Fri, 15 May 2009)
New Revision: 29966

Modified:
   xfcalendar/trunk/src/functions.c
Log:
fix for previous patch


Modified: xfcalendar/trunk/src/functions.c
===================================================================
--- xfcalendar/trunk/src/functions.c	2009-05-15 08:07:44 UTC (rev 29965)
+++ xfcalendar/trunk/src/functions.c	2009-05-15 08:10:21 UTC (rev 29966)
@@ -367,14 +367,12 @@
     tm_date.tm_year -= 1900;
     tm_date.tm_hour = hh;
     tm_date.tm_min = mm;
-    g_print("***** orage_cal_to_i18_time: hour:%d dst:%d\n", tm_date.tm_hour, tm_date.tm_isdst);
     /* need to fill missing tm_wday and tm_yday, which are in use 
      * in some locale's default date. For example in en_IN. mktime does it */
     if (mktime(&tm_date) == (time_t) -1) {
         g_warning("orage: orage_cal_to_i18_time mktime failed %d %d %d"
                 , tm_date.tm_year, tm_date.tm_mon, tm_date.tm_mday);
     }
-    g_print("***** orage_cal_to_i18_time: hour:%d dst:%d\n", tm_date.tm_hour, tm_date.tm_isdst);
     return(orage_tm_time_to_i18_time(&tm_date));
 }
 




More information about the Xfce4-commits mailing list