aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/corba-cal.c
diff options
context:
space:
mode:
authorEskil Heyn Olsen <eskil@src.gnome.org>1999-09-21 05:09:00 +0800
committerEskil Heyn Olsen <eskil@src.gnome.org>1999-09-21 05:09:00 +0800
commitad24a0d6eb148f9fdf82cc42384b2891ce32a61f (patch)
tree81751de0614124b23fe2b60ab277e890f17cb49e /calendar/corba-cal.c
parentbb18195c269739ad3b48f26945bd46982341b396 (diff)
downloadgsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.tar
gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.tar.gz
gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.tar.bz2
gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.tar.lz
gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.tar.xz
gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.tar.zst
gsoc2013-evolution-ad24a0d6eb148f9fdf82cc42384b2891ce32a61f.zip
lot of rework, implemented various set_* functions, transmit and
* gncal/calendar-conduit: lot of rework, implemented various set_* functions, transmit and free_transmit, now appears stable, still only syncs oneway (pilot -> gnomecal) svn path=/trunk/; revision=1243
Diffstat (limited to 'calendar/corba-cal.c')
-rw-r--r--calendar/corba-cal.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/calendar/corba-cal.c b/calendar/corba-cal.c
index 8c6246da14..e21ea29f6a 100644
--- a/calendar/corba-cal.c
+++ b/calendar/corba-cal.c
@@ -83,8 +83,6 @@ cal_repo_get_object_by_pilot_id (PortableServer_Servant servant,
char *buffer;
CORBA_char *ret;
- g_message("entering cal_repo_get_object_by_pilot_id\n");
-
obj = calendar_object_find_by_pilot (gcal->cal, pilot_id);
if (obj == NULL){
GNOME_Calendar_Repository_NotFound *exn;
@@ -93,7 +91,6 @@ cal_repo_get_object_by_pilot_id (PortableServer_Servant servant,
CORBA_exception_set (ev,
CORBA_USER_EXCEPTION,
ex_GNOME_Calendar_Repository_NotFound, exn);
- g_message("leaving cal_repo_get_object_by_pilot_id the hard way\n");
return NULL;
}
@@ -101,8 +98,6 @@ cal_repo_get_object_by_pilot_id (PortableServer_Servant servant,
ret = CORBA_string_dup (buffer);
free (buffer);
- g_message("leaving cal_repo_get_object_by_pilot_id\n");
-
return ret;
}