aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2003-11-11 09:46:52 +0800
committerJP Rosevear <jpr@src.gnome.org>2003-11-11 09:46:52 +0800
commit70a993e368472520da0dd1a13370637b47206693 (patch)
tree516ce2f389b81b7ee66e5860a2896dc7d1ed750d
parenta99f0c42908ca1d5e923164c624f34cc770bef4f (diff)
downloadgsoc2013-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
-rw-r--r--calendar/ChangeLog9
-rw-r--r--calendar/conduits/calendar/calendar-conduit.c4
-rw-r--r--calendar/conduits/todo/todo-conduit.c4
3 files changed, 13 insertions, 4 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 57e3c5a670..0b437e7a25 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,12 @@
+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
+
+ * conduits/todo/todo-conduit.c: same
+
2003-11-10 Dan Winship <danw@ximian.com>
* gui/e-tasks.c (e_tasks_delete_completed): Remove get-vtype check
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" ));