diff options
author | Milan Crha <mcrha@redhat.com> | 2010-10-07 01:26:08 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-10-07 01:26:08 +0800 |
commit | 1c6f2d154e74f908e2c4a137de0233b5faf4f6b6 (patch) | |
tree | 77a33236e48ed59a7c7c65e8a1c91481dd09f3eb /widgets/table/gal-a11y-e-table-item.c | |
parent | 1b2fefb086c3e34089beb8b89b22d79005cc7725 (diff) | |
download | gsoc2013-evolution-1c6f2d154e74f908e2c4a137de0233b5faf4f6b6.tar.gz gsoc2013-evolution-1c6f2d154e74f908e2c4a137de0233b5faf4f6b6.tar.zst gsoc2013-evolution-1c6f2d154e74f908e2c4a137de0233b5faf4f6b6.zip |
Bug #631320 - GtkObject is gone in GTK3
Diffstat (limited to 'widgets/table/gal-a11y-e-table-item.c')
-rw-r--r-- | widgets/table/gal-a11y-e-table-item.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/widgets/table/gal-a11y-e-table-item.c b/widgets/table/gal-a11y-e-table-item.c index f65da5dd52..3938bd02ec 100644 --- a/widgets/table/gal-a11y-e-table-item.c +++ b/widgets/table/gal-a11y-e-table-item.c @@ -69,7 +69,7 @@ static gboolean gal_a11y_e_table_item_unref_selection (GalA11yETableItem *a11y); static AtkObject* eti_ref_at (AtkTable *table, gint row, gint column); static void -item_destroyed (GtkObject *item, gpointer user_data) +item_finalized (gpointer user_data, GObject *gone_item) { GalA11yETableItem *a11y = GAL_A11Y_E_TABLE_ITEM (user_data); GalA11yETableItemPrivate *priv = GET_PRIVATE (a11y); @@ -1098,9 +1098,8 @@ gal_a11y_e_table_item_new (ETableItem *item) } if (item) - g_signal_connect (G_OBJECT (item), "destroy", - G_CALLBACK (item_destroyed), - a11y); + g_object_weak_ref (G_OBJECT (item), item_finalized, a11y); + esm = item->selection; if (esm != NULL) { |