diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2005-05-16 16:35:00 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-05-16 16:35:00 +0800 |
commit | 1b7f8af0fa537de73c005a3853cb3ba7ea2fd91e (patch) | |
tree | 24d04d717bfbf909cf02afc723b3771254868522 /calendar | |
parent | 318fc604c17d6cf30a8db5708f8e692baa985fd3 (diff) | |
download | gsoc2013-evolution-1b7f8af0fa537de73c005a3853cb3ba7ea2fd91e.tar.gz gsoc2013-evolution-1b7f8af0fa537de73c005a3853cb3ba7ea2fd91e.tar.zst gsoc2013-evolution-1b7f8af0fa537de73c005a3853cb3ba7ea2fd91e.zip |
Removed the debug messages.
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.
svn path=/trunk/; revision=29372
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; |