diff options
author | Xan Lopez <xan@src.gnome.org> | 2009-01-24 01:32:42 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2009-01-24 01:32:42 +0800 |
commit | 85eeddd7c934d0485d6d62250191af34b4815f01 (patch) | |
tree | a7b578f2d6076522da68c6f43ba05ce0a7f71050 /src/bookmarks/ephy-bookmarks-ui.c | |
parent | 620d5e3d46ded3b5cc552ba13cc4d595243f1b01 (diff) | |
download | gsoc2013-epiphany-85eeddd7c934d0485d6d62250191af34b4815f01.tar gsoc2013-epiphany-85eeddd7c934d0485d6d62250191af34b4815f01.tar.gz gsoc2013-epiphany-85eeddd7c934d0485d6d62250191af34b4815f01.tar.bz2 gsoc2013-epiphany-85eeddd7c934d0485d6d62250191af34b4815f01.tar.lz gsoc2013-epiphany-85eeddd7c934d0485d6d62250191af34b4815f01.tar.xz gsoc2013-epiphany-85eeddd7c934d0485d6d62250191af34b4815f01.tar.zst gsoc2013-epiphany-85eeddd7c934d0485d6d62250191af34b4815f01.zip |
Do not use 'gtk-action' object data to get the associated GtkAction
for a widget.
It's an implementation detail and will go away soon. Use documented
APIs instead.
svn path=/branches/gnome-2-26/; revision=8724
Diffstat (limited to 'src/bookmarks/ephy-bookmarks-ui.c')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-ui.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bookmarks/ephy-bookmarks-ui.c b/src/bookmarks/ephy-bookmarks-ui.c index 809bc6f5d..96264f2d4 100644 --- a/src/bookmarks/ephy-bookmarks-ui.c +++ b/src/bookmarks/ephy-bookmarks-ui.c @@ -117,7 +117,7 @@ activate_bookmark_properties (GtkAction *action, widget = gtk_widget_get_ancestor (egg_editable_toolbar_get_selected (etoolbar), GTK_TYPE_TOOL_ITEM); - baction = widget ? g_object_get_data (G_OBJECT (widget), "gtk-action") : NULL; + baction = widget ? gtk_widget_get_action (widget) : NULL; g_return_if_fail (EPHY_IS_BOOKMARK_ACTION (baction)); ephy_bookmarks_ui_show_bookmark (ephy_bookmark_action_get_bookmark @@ -133,7 +133,7 @@ activate_bookmark_open_tab (GtkAction *action, widget = gtk_widget_get_ancestor (egg_editable_toolbar_get_selected (etoolbar), GTK_TYPE_TOOL_ITEM); - baction = widget ? g_object_get_data (G_OBJECT (widget), "gtk-action") : NULL; + baction = widget ? gtk_widget_get_action (widget) : NULL; g_return_if_fail (EPHY_IS_BOOKMARK_ACTION (baction)); ephy_bookmark_action_activate (EPHY_BOOKMARK_ACTION (baction), widget, @@ -149,7 +149,7 @@ activate_bookmark_open_window (GtkAction *action, widget = gtk_widget_get_ancestor (egg_editable_toolbar_get_selected (etoolbar), GTK_TYPE_TOOL_ITEM); - baction = widget ? g_object_get_data (G_OBJECT (widget), "gtk-action") : NULL; + baction = widget ? gtk_widget_get_action (widget) : NULL; g_return_if_fail (EPHY_IS_BOOKMARK_ACTION (baction)); ephy_bookmark_action_activate (EPHY_BOOKMARK_ACTION (baction), widget, @@ -171,7 +171,7 @@ selected_bookmark_action (EggEditableToolbar *etoolbar, { widget = egg_editable_toolbar_get_selected (etoolbar); widget = widget ? gtk_widget_get_ancestor (widget, GTK_TYPE_TOOL_ITEM) : NULL; - baction = widget ? g_object_get_data (G_OBJECT (widget), "gtk-action") : NULL; + baction = widget ? gtk_widget_get_action (widget) : NULL; visible = EPHY_IS_BOOKMARK_ACTION (baction); } |