diff options
author | Xan Lopez <xan@src.gnome.org> | 2009-02-08 20:15:25 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2009-02-08 20:15:25 +0800 |
commit | cbea51644e5143aaa535a972174a0269a63d2505 (patch) | |
tree | 703013248984e6ff19005a3201a4184e1b2523d4 /src/bookmarks/ephy-topic-action.c | |
parent | 2d0e1157e413c2dfaf7101b025fa929513676bc9 (diff) | |
download | gsoc2013-epiphany-cbea51644e5143aaa535a972174a0269a63d2505.tar gsoc2013-epiphany-cbea51644e5143aaa535a972174a0269a63d2505.tar.gz gsoc2013-epiphany-cbea51644e5143aaa535a972174a0269a63d2505.tar.bz2 gsoc2013-epiphany-cbea51644e5143aaa535a972174a0269a63d2505.tar.lz gsoc2013-epiphany-cbea51644e5143aaa535a972174a0269a63d2505.tar.xz gsoc2013-epiphany-cbea51644e5143aaa535a972174a0269a63d2505.tar.zst gsoc2013-epiphany-cbea51644e5143aaa535a972174a0269a63d2505.zip |
Use gtk_activatable_get_related_action instead of the deprecated gtk_widget_get_action.
svn path=/trunk/; revision=8771
Diffstat (limited to 'src/bookmarks/ephy-topic-action.c')
-rw-r--r-- | src/bookmarks/ephy-topic-action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks/ephy-topic-action.c b/src/bookmarks/ephy-topic-action.c index 0ef63a50d..512a6a067 100644 --- a/src/bookmarks/ephy-topic-action.c +++ b/src/bookmarks/ephy-topic-action.c @@ -376,7 +376,7 @@ button_enter_cb (GtkWidget *button, gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (active_button))) { EphyTopicAction *active_action; - active_action = gtk_widget_get_action (GTK_WIDGET (active_button)); + active_action = (EphyTopicAction*)gtk_activatable_get_related_action (GTK_ACTIVATABLE (active_button)); erase_popup (active_action); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (active_button), FALSE); |