diff options
author | JP Rosevear <jpr@ximian.com> | 2003-11-11 09:46:52 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-11-11 09:46:52 +0800 |
commit | 70a993e368472520da0dd1a13370637b47206693 (patch) | |
tree | 516ce2f389b81b7ee66e5860a2896dc7d1ed750d /calendar/conduits | |
parent | a99f0c42908ca1d5e923164c624f34cc770bef4f (diff) | |
download | gsoc2013-evolution-70a993e368472520da0dd1a13370637b47206693.tar gsoc2013-evolution-70a993e368472520da0dd1a13370637b47206693.tar.gz gsoc2013-evolution-70a993e368472520da0dd1a13370637b47206693.tar.bz2 gsoc2013-evolution-70a993e368472520da0dd1a13370637b47206693.tar.lz gsoc2013-evolution-70a993e368472520da0dd1a13370637b47206693.tar.xz gsoc2013-evolution-70a993e368472520da0dd1a13370637b47206693.tar.zst gsoc2013-evolution-70a993e368472520da0dd1a13370637b47206693.zip |
use proper change list free function name (post_sync): ditto
2003-11-10 JP Rosevear <jpr@ximian.com>
* conduits/calendar/calendar-conduit.c
(e_calendar_context_destroy): use proper change list free function
name
(post_sync): ditto
svn path=/trunk/; revision=23275
Diffstat (limited to 'calendar/conduits')
-rw-r--r-- | calendar/conduits/calendar/calendar-conduit.c | 4 | ||||
-rw-r--r-- | calendar/conduits/todo/todo-conduit.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/calendar/conduits/calendar/calendar-conduit.c b/calendar/conduits/calendar/calendar-conduit.c index c1d0e45134..d028fee56c 100644 --- a/calendar/conduits/calendar/calendar-conduit.c +++ b/calendar/conduits/calendar/calendar-conduit.c @@ -318,7 +318,7 @@ e_calendar_context_destroy (ECalConduitContext *ctxt) } if (ctxt->changed != NULL) - e_cal_change_list_free (ctxt->changed); + e_cal_free_change_list (ctxt->changed); if (ctxt->changed_hash != NULL) { g_hash_table_foreach_remove (ctxt->changed_hash, e_calendar_context_foreach_change, NULL); @@ -1502,7 +1502,7 @@ post_sync (GnomePilotConduit *conduit, */ change_id = g_strdup_printf ("pilot-sync-evolution-calendar-%d", ctxt->cfg->pilot_id); if (e_cal_get_changes (ctxt->client, change_id, &changed, NULL)) - e_cal_change_list_free (changed); + e_cal_free_change_list (changed); g_free (change_id); LOG (g_message ( "---------------------------------------------------------\n" )); diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c index 4b20e2cf39..61a0598a75 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -329,7 +329,7 @@ e_todo_context_destroy (EToDoConduitContext *ctxt) } if (ctxt->changed != NULL) - e_cal_change_list_free (ctxt->changed); + e_cal_free_change_list (ctxt->changed); if (ctxt->map != NULL) e_pilot_map_destroy (ctxt->map); @@ -1012,7 +1012,7 @@ post_sync (GnomePilotConduit *conduit, */ change_id = g_strdup_printf ("pilot-sync-evolution-todo-%d", ctxt->cfg->pilot_id); if (e_cal_get_changes (ctxt->client, change_id, &changed, NULL)) - e_cal_change_list_free (changed); + e_cal_free_change_list (changed); g_free (change_id); LOG (g_message ( "---------------------------------------------------------\n" )); |