diff options
author | JP Rosevear <jpr@ximian.com> | 2003-03-21 03:36:31 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-03-21 03:36:31 +0800 |
commit | 618f8727980b598ef6bd2d6ea0239e7840f82a4c (patch) | |
tree | d57639ab3fef470147bfefa2ff5828291f917d26 /calendar/conduits/todo | |
parent | 8d9be87caabc2548b11548eeb4697683394301a7 (diff) | |
download | gsoc2013-evolution-618f8727980b598ef6bd2d6ea0239e7840f82a4c.tar.gz gsoc2013-evolution-618f8727980b598ef6bd2d6ea0239e7840f82a4c.tar.zst gsoc2013-evolution-618f8727980b598ef6bd2d6ea0239e7840f82a4c.zip |
calcomponents are gobjects now (calconduit_load_configuration): ref and
2003-03-20 JP Rosevear <jpr@ximian.com>
* conduits/calendar/calendar-conduit.c
(e_calendar_context_destroy): calcomponents are gobjects now
(calconduit_load_configuration): ref and sink to avoid warnings
* conduits/todo/todo-conduit.c (todoconduit_load_configuration):
ref and sink to avoid warnings
(e_todo_context_destroy): calcomponents are gobjects now
svn path=/trunk/; revision=20437
Diffstat (limited to 'calendar/conduits/todo')
-rw-r--r-- | calendar/conduits/todo/todo-conduit.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c index 18819b9b70..98f586716d 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -117,7 +117,11 @@ todoconduit_load_configuration (guint32 pilot_id) c->pilot_id = pilot_id; management = gnome_pilot_conduit_management_new ("e_todo_conduit", GNOME_PILOT_CONDUIT_MGMT_ID); + gtk_object_ref (GTK_OBJECT (management)); + gtk_object_sink (GTK_OBJECT (management)); config = gnome_pilot_conduit_config_new (management, pilot_id); + gtk_object_ref (GTK_OBJECT (config)); + gtk_object_sink (GTK_OBJECT (config)); if (!gnome_pilot_conduit_config_is_enabled (config, &c->sync_type)) c->sync_type = GnomePilotConduitSyncTypeNotSet; gtk_object_unref (GTK_OBJECT (config)); @@ -308,7 +312,7 @@ e_todo_context_destroy (EToDoConduitContext *ctxt) g_object_unref (ctxt->client); if (ctxt->default_comp != NULL) - gtk_object_unref (GTK_OBJECT (ctxt->default_comp)); + g_object_unref (ctxt->default_comp); if (ctxt->uids != NULL) cal_obj_uid_list_free (ctxt->uids); |