aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-account-prefs.c
diff options
context:
space:
mode:
authorHiroyuki Ikezoe <poincare@ikezoe.net>2006-07-10 18:56:07 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-07-10 18:56:07 +0800
commitb551414de076b32b638742aa26c0aa175f0e3e7a (patch)
treeaa07e3cffa1a8a3fa72417df4b4412091e85f991 /mail/em-account-prefs.c
parent79e662f99e144d6ad8d14d720315f131325ee2ae (diff)
downloadgsoc2013-evolution-b551414de076b32b638742aa26c0aa175f0e3e7a.tar
gsoc2013-evolution-b551414de076b32b638742aa26c0aa175f0e3e7a.tar.gz
gsoc2013-evolution-b551414de076b32b638742aa26c0aa175f0e3e7a.tar.bz2
gsoc2013-evolution-b551414de076b32b638742aa26c0aa175f0e3e7a.tar.lz
gsoc2013-evolution-b551414de076b32b638742aa26c0aa175f0e3e7a.tar.xz
gsoc2013-evolution-b551414de076b32b638742aa26c0aa175f0e3e7a.tar.zst
gsoc2013-evolution-b551414de076b32b638742aa26c0aa175f0e3e7a.zip
Fixing memory leaks.
2006-07-07 Hiroyuki Ikezoe <poincare@ikezoe.net> Fixing memory leaks. svn path=/trunk/; revision=32269
Diffstat (limited to 'mail/em-account-prefs.c')
-rw-r--r--mail/em-account-prefs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/em-account-prefs.c b/mail/em-account-prefs.c
index ec0a232e88..f49ff4009a 100644
--- a/mail/em-account-prefs.c
+++ b/mail/em-account-prefs.c
@@ -515,6 +515,7 @@ em_account_prefs_treeview_new (char *widget_name, char *string1, char *string2,
model = gtk_list_store_new (4, G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_POINTER);
table = gtk_tree_view_new_with_model ((GtkTreeModel *) model);
+ g_object_unref (model);
gtk_tree_view_insert_column_with_attributes ((GtkTreeView *) table, -1, _("Enabled"),
renderer, "active", 0, NULL);