aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-util.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-17 07:31:47 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-17 07:31:47 +0800
commit6e93dd6be8cdf45628a9799e7e6c9cb84af49156 (patch)
tree3ba0099ae93eed957b3983575d4428345759012b /e-util/e-util.c
parent941ee0f35bb344ad6ac718b83d0f4d2b30cc23cd (diff)
downloadgsoc2013-evolution-6e93dd6be8cdf45628a9799e7e6c9cb84af49156.tar
gsoc2013-evolution-6e93dd6be8cdf45628a9799e7e6c9cb84af49156.tar.gz
gsoc2013-evolution-6e93dd6be8cdf45628a9799e7e6c9cb84af49156.tar.bz2
gsoc2013-evolution-6e93dd6be8cdf45628a9799e7e6c9cb84af49156.tar.lz
gsoc2013-evolution-6e93dd6be8cdf45628a9799e7e6c9cb84af49156.tar.xz
gsoc2013-evolution-6e93dd6be8cdf45628a9799e7e6c9cb84af49156.tar.zst
gsoc2013-evolution-6e93dd6be8cdf45628a9799e7e6c9cb84af49156.zip
add lots of marshallers (most, if not all, for etable).
2002-11-16 Chris Toshok <toshok@ximian.com> * gal/util/e-marshal.list: add lots of marshallers (most, if not all, for etable). * gal/util/e-text-event-processor-emacs-like.[ch]: lotsa GObject work. * gal/util/e-text-event-processor.[ch]: lotsa GObject work. * gal/util/e-util.c: same. * gal/e-paned/e-hpaned.[ch]: lotsa GObject work. * gal/e-paned/e-paned.[ch]: same. * gal/e-paned/e-vpaned.[ch]: same. svn path=/trunk/; revision=18797
Diffstat (limited to 'e-util/e-util.c')
-rw-r--r--e-util/e-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-util.c b/e-util/e-util.c
index 135386f1cf..c425050c4e 100644
--- a/e-util/e-util.c
+++ b/e-util/e-util.c
@@ -91,7 +91,7 @@ e_free_object_list (GList *list)
GList *p;
for (p = list; p != NULL; p = p->next)
- gtk_object_unref (GTK_OBJECT (p->data));
+ g_object_unref (p->data);
g_list_free (list);
}
@@ -102,7 +102,7 @@ e_free_object_slist (GSList *list)
GSList *p;
for (p = list; p != NULL; p = p->next)
- gtk_object_unref (GTK_OBJECT (p->data));
+ g_object_unref (p->data);
g_slist_free (list);
}