diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/gnome-cal.c | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 56087fe825..6e79c8b2a8 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2005-05-16 Chenthill Palanisamy <pchenthill@novell.com> + + * gui/gnome-cal.c: (client_cal_opened_cb), + (default_client_cal_opened_cb): Removed the debug + messages. + 2005-05-16 Not Zed <NotZed@Ximian.com> * moved e-error to e-util/ diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index a34a6237db..0a038e4539 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -2223,10 +2223,8 @@ client_cal_opened_cb (ECal *ecal, ECalendarStatus status, GnomeCalendar *gcal) } switch (status) { case E_CALENDAR_STATUS_OK: - g_message ("********* the state in ok is %d \n", state); break; case E_CALENDAR_STATUS_BUSY: - g_message ("********* the state is %d \n", state); if (state == E_CAL_LOAD_NOT_LOADED) e_cal_open_async (ecal, FALSE); return; @@ -2321,7 +2319,6 @@ default_client_cal_opened_cb (ECal *ecal, ECalendarStatus status, GnomeCalendar case E_CALENDAR_STATUS_OK: break; case E_CALENDAR_STATUS_BUSY: - g_message ("********* the state is %d \n", state); if (state == E_CAL_LOAD_NOT_LOADED) e_cal_open_async (ecal, FALSE); return; |