aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-cell-pixbuf.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2007-03-01 20:52:05 +0800
committerKjartan Maraas <kmaraas@src.gnome.org>2007-03-01 20:52:05 +0800
commitdfb8c61df838c14a311f218a35390e9fae7735fc (patch)
tree3f3308664648a56b36ecf8d8f1fd0902414703cc /widgets/table/e-cell-pixbuf.c
parentf85afa9f7d1b43d9eb56a5c8cb4011f3d2521306 (diff)
downloadgsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.tar
gsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.tar.gz
gsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.tar.bz2
gsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.tar.lz
gsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.tar.xz
gsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.tar.zst
gsoc2013-evolution-dfb8c61df838c14a311f218a35390e9fae7735fc.zip
** Fixes bug #357216
2006-02-08 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #357216 * text/e-entry.c: Remove "font", "fontset", and "gdk_font" properties, since they forward gets and sets to non-existant properties in entry->item. 2006-09-27 Matthew Barnes <mbarnes@redhat.com> Fixes bug #357970 * text/e-text.c (e_text_unrealize): Don't call deprecated GLib / GDK svn path=/trunk/; revision=33269
Diffstat (limited to 'widgets/table/e-cell-pixbuf.c')
-rw-r--r--widgets/table/e-cell-pixbuf.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/widgets/table/e-cell-pixbuf.c b/widgets/table/e-cell-pixbuf.c
index 38fb1ae59d..1d9967d23b 100644
--- a/widgets/table/e-cell-pixbuf.c
+++ b/widgets/table/e-cell-pixbuf.c
@@ -97,6 +97,9 @@ pixbuf_new_view (ECell *ecell, ETableModel *table_model, void *e_table_item_view
pixbuf_view->cell_view.ecell = ecell;
pixbuf_view->cell_view.e_table_model = table_model;
pixbuf_view->cell_view.e_table_item_view = e_table_item_view;
+ pixbuf_view->cell_view.kill_view_cb = NULL;
+ pixbuf_view->cell_view.kill_view_cb_data = NULL;
+
pixbuf_view->canvas = canvas;
return (ECellView *) pixbuf_view;
@@ -107,6 +110,12 @@ pixbuf_kill_view (ECellView *ecell_view)
{
ECellPixbufView *pixbuf_view = (ECellPixbufView *) ecell_view;
+ if (pixbuf_view->cell_view.kill_view_cb)
+ (pixbuf_view->cell_view.kill_view_cb)(ecell_view, pixbuf_view->cell_view.kill_view_cb_data);
+
+ if (pixbuf_view->cell_view.kill_view_cb_data)
+ g_list_free(pixbuf_view->cell_view.kill_view_cb_data);
+
g_free (pixbuf_view);
}