diff options
author | Milan Crha <mcrha@redhat.com> | 2011-02-15 02:15:36 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:35 +0800 |
commit | a4e2599f950cd2379a18a4c39cd27f87f090d492 (patch) | |
tree | fb1e71901c4824a0666f40d02c58a3ec72c9033c /calendar/gui/e-cal-list-view.c | |
parent | ecbb0bce4a854e7b617566f43a0b97f85bc63217 (diff) | |
download | gsoc2013-evolution-a4e2599f950cd2379a18a4c39cd27f87f090d492.tar.gz gsoc2013-evolution-a4e2599f950cd2379a18a4c39cd27f87f090d492.tar.zst gsoc2013-evolution-a4e2599f950cd2379a18a4c39cd27f87f090d492.zip |
Fix few memory leaks
Diffstat (limited to 'calendar/gui/e-cal-list-view.c')
-rw-r--r-- | calendar/gui/e-cal-list-view.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/e-cal-list-view.c b/calendar/gui/e-cal-list-view.c index 010de9590b..27a11787ae 100644 --- a/calendar/gui/e-cal-list-view.c +++ b/calendar/gui/e-cal-list-view.c @@ -183,6 +183,7 @@ setup_e_table (ECalListView *cal_list_view) NULL); e_table_extras_add_cell (extras, "calstring", cell); + g_object_unref (cell); /* Date fields */ @@ -214,6 +215,7 @@ setup_e_table (ECalListView *cal_list_view) G_BINDING_SYNC_CREATE); e_table_extras_add_cell (extras, "dateedit", popup_cell); + g_object_unref (popup_cell); cal_list_view->dates_cell = E_CELL_DATE_EDIT (popup_cell); gtk_widget_hide (E_CELL_DATE_EDIT (popup_cell)->none_button); @@ -243,6 +245,7 @@ setup_e_table (ECalListView *cal_list_view) g_list_free (strings); e_table_extras_add_cell (extras, "classification", popup_cell); + g_object_unref (popup_cell); /* Sorting */ |