aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamon Chaplin <damon@ximian.com>2001-08-02 11:22:45 +0800
committerDamon Chaplin <damon@src.gnome.org>2001-08-02 11:22:45 +0800
commit9092b9ca26d8c3757b959ed826105e0e70de596b (patch)
tree0ef55b69331aafecbd822e5f9e6df2fea74b30cb
parentbeb38ecbf67db1077eb9f773d655cf916d28ea05 (diff)
downloadgsoc2013-evolution-9092b9ca26d8c3757b959ed826105e0e70de596b.tar
gsoc2013-evolution-9092b9ca26d8c3757b959ed826105e0e70de596b.tar.gz
gsoc2013-evolution-9092b9ca26d8c3757b959ed826105e0e70de596b.tar.bz2
gsoc2013-evolution-9092b9ca26d8c3757b959ed826105e0e70de596b.tar.lz
gsoc2013-evolution-9092b9ca26d8c3757b959ed826105e0e70de596b.tar.xz
gsoc2013-evolution-9092b9ca26d8c3757b959ed826105e0e70de596b.tar.zst
gsoc2013-evolution-9092b9ca26d8c3757b959ed826105e0e70de596b.zip
removed debugging messages.
2001-08-01 Damon Chaplin <damon@ximian.com> * cal-client/cal-client.c: removed debugging messages. svn path=/trunk/; revision=11563
-rw-r--r--calendar/ChangeLog4
-rw-r--r--calendar/cal-client/cal-client.c9
2 files changed, 4 insertions, 9 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 05fb471217..be19f93e64 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,7 @@
+2001-08-01 Damon Chaplin <damon@ximian.com>
+
+ * cal-client/cal-client.c: removed debugging messages.
+
2001-08-01 Federico Mena Quintero <federico@ximian.com>
The calendar search bar widget now includes a drop-down menu of
diff --git a/calendar/cal-client/cal-client.c b/calendar/cal-client/cal-client.c
index bb888e6205..4a1a7d2edc 100644
--- a/calendar/cal-client/cal-client.c
+++ b/calendar/cal-client/cal-client.c
@@ -904,8 +904,6 @@ cal_client_get_object_timezones_cb (icalparameter *param,
return;
}
- g_print ("Pre-fetching timezone: %s\n", tzid);
-
status = cal_client_get_timezone (cb_data->client, tzid, &zone);
if (status != CAL_CLIENT_GET_SUCCESS)
cb_data->status = status;
@@ -924,8 +922,6 @@ cal_client_get_timezone (CalClient *client,
icalcomponent *icalcomp;
icaltimezone *tmp_zone;
- g_print ("In cal_client_get_timezone: %s\n", tzid);
-
g_return_val_if_fail (client != NULL, CAL_CLIENT_GET_NOT_FOUND);
g_return_val_if_fail (IS_CAL_CLIENT (client), CAL_CLIENT_GET_NOT_FOUND);
@@ -938,14 +934,12 @@ cal_client_get_timezone (CalClient *client,
/* If tzid is NULL or "" we return NULL, since it is a 'local time'. */
if (!tzid || !tzid[0]) {
*zone = NULL;
- g_print (" zone is local time (NULL)\n");
return CAL_CLIENT_GET_SUCCESS;
}
/* If it is UTC, we return the special UTC timezone. */
if (!strcmp (tzid, "UTC")) {
*zone = icaltimezone_get_utc_timezone ();
- g_print (" zone is UTC\n");
return CAL_CLIENT_GET_SUCCESS;
}
@@ -953,15 +947,12 @@ cal_client_get_timezone (CalClient *client,
tmp_zone = g_hash_table_lookup (priv->timezones, tzid);
if (tmp_zone) {
*zone = tmp_zone;
- g_print (" zone is in cache\n");
return CAL_CLIENT_GET_SUCCESS;
}
retval = CAL_CLIENT_GET_NOT_FOUND;
*zone = NULL;
- g_print (" getting zone from server\n");
-
/* We don't already have it, so we try to get it from the server. */
CORBA_exception_init (&ev);
comp_str = GNOME_Evolution_Calendar_Cal_getTimezoneObject (priv->cal, (char *) tzid, &ev);