diff options
author | Diego Escalante Urrelo <diegoe@gnome.org> | 2009-12-07 21:07:19 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@gnome.org> | 2009-12-07 21:07:19 +0800 |
commit | 41ceee8ac728d660245972ed41b0fa577b694446 (patch) | |
tree | 134baba4d843353a1baf4a81af19d45ae89053de /src/ephy-link-action.c | |
parent | 7df0ef5da7881342298485eb88241695603d447c (diff) | |
download | gsoc2013-epiphany-41ceee8ac728d660245972ed41b0fa577b694446.tar.gz gsoc2013-epiphany-41ceee8ac728d660245972ed41b0fa577b694446.tar.zst gsoc2013-epiphany-41ceee8ac728d660245972ed41b0fa577b694446.zip |
Revert "Don't use deprecated GtkButton API"
Revert this commit since Xan is right about forgetting about deprecating API.
Instead of hiding behind g_signal_emit() we should use modern API or file bugs
to fill our need.
Diffstat (limited to 'src/ephy-link-action.c')
-rw-r--r-- | src/ephy-link-action.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ephy-link-action.c b/src/ephy-link-action.c index 68ac2ff6b..0447663ac 100644 --- a/src/ephy-link-action.c +++ b/src/ephy-link-action.c @@ -34,20 +34,20 @@ G_DEFINE_TYPE_WITH_CODE (EphyLinkAction, ephy_link_action, GTK_TYPE_ACTION, NULL)) static gboolean -proxy_button_press_event_cb (GtkWidget *widget, - GdkEventButton *event, - EphyLinkAction *action) +proxy_button_press_event_cb (GtkButton *button, + GdkEventButton *event, + EphyLinkAction *action) { if (event->button == 2) { - g_signal_emit_by_name (widget, "pressed"); + gtk_button_pressed(button); } return FALSE; } static gboolean -proxy_button_release_event_cb (GtkWidget *widget, +proxy_button_release_event_cb (GtkButton *button, GdkEventButton *event, EphyLinkAction *action) { @@ -58,7 +58,7 @@ proxy_button_release_event_cb (GtkWidget *widget, */ if (event->button == 2) { - g_signal_emit_by_name (widget, "released"); + gtk_button_released(button); } return FALSE; |