diff options
author | Miguel de Icaza <miguel@gnu.org> | 1999-07-29 12:25:08 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1999-07-29 12:25:08 +0800 |
commit | cabedf4da95562f8372a543840748ea43dff2a91 (patch) | |
tree | 9d15220864e12083fa4747a775400446cd0502d3 /calendar/gui/corba-cal.c | |
parent | 094deb7bca96f1dcf97952b93a7c4745cd799ebc (diff) | |
download | gsoc2013-evolution-cabedf4da95562f8372a543840748ea43dff2a91.tar.gz gsoc2013-evolution-cabedf4da95562f8372a543840748ea43dff2a91.tar.zst gsoc2013-evolution-cabedf4da95562f8372a543840748ea43dff2a91.zip |
Make the code not take arguments (sync_cal_to_pilot): Nice event update
1999-07-28 Miguel de Icaza <miguel@gnu.org>
* calendar-pilot-sync.c: Make the code not take arguments
(sync_cal_to_pilot): Nice event update information
* calendar.c (calendar_new): Add Event UID hash table.
(calendar_add_object): Add events to the hash table here.
(calendar_remove_object): Remove events here.
(calendar_object_find_event): Use the hash table here.
* main.c (save_calendar_cmd): The object is already destroyed by
gnome_dialog_run.
* calendar-pilot-sync.c (sync_object_to_pilot): Do not turn
archived bit on.
svn path=/trunk/; revision=1041
Diffstat (limited to 'calendar/gui/corba-cal.c')
-rw-r--r-- | calendar/gui/corba-cal.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/calendar/gui/corba-cal.c b/calendar/gui/corba-cal.c index 8f92057d42..f322b41db8 100644 --- a/calendar/gui/corba-cal.c +++ b/calendar/gui/corba-cal.c @@ -81,7 +81,6 @@ cal_repo_get_object_by_pilot_id (PortableServer_Servant servant, CORBA_char *ret; obj = calendar_object_find_by_pilot (gcal->cal, pilot_id); - printf ("Looking for [%d]\n", pilot_id); if (obj == NULL){ CORBA_exception_set (ev, CORBA_USER_EXCEPTION, @@ -149,7 +148,6 @@ cal_repo_update_object (PortableServer_Servant servant, obj = calendar_object_find_event (gcal->cal, uid); if (obj != NULL){ - printf ("ELIMINATING: %s -> %s\n", obj->uid, new_object->uid); calendar_remove_object (gcal->cal, obj); } |