diff options
author | Milan Crha <mcrha@redhat.com> | 2012-11-09 00:26:32 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-11-09 00:27:37 +0800 |
commit | 75595d233ba382dee053d70cf35e26b7eff3befa (patch) | |
tree | c1d38c5c8aa1e34f158cb1d8be6626ce0342f898 /addressbook | |
parent | ba634a1fb1ea927e37bd59b2a1d99aa7fa184eb4 (diff) | |
download | gsoc2013-evolution-75595d233ba382dee053d70cf35e26b7eff3befa.tar gsoc2013-evolution-75595d233ba382dee053d70cf35e26b7eff3befa.tar.gz gsoc2013-evolution-75595d233ba382dee053d70cf35e26b7eff3befa.tar.bz2 gsoc2013-evolution-75595d233ba382dee053d70cf35e26b7eff3befa.tar.lz gsoc2013-evolution-75595d233ba382dee053d70cf35e26b7eff3befa.tar.xz gsoc2013-evolution-75595d233ba382dee053d70cf35e26b7eff3befa.tar.zst gsoc2013-evolution-75595d233ba382dee053d70cf35e26b7eff3befa.zip |
Bug #683877 - No more contextual menus for links
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/gui/widgets/eab-contact-display.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/addressbook/gui/widgets/eab-contact-display.c b/addressbook/gui/widgets/eab-contact-display.c index d6c4238e2f..66928b9f85 100644 --- a/addressbook/gui/widgets/eab-contact-display.c +++ b/addressbook/gui/widgets/eab-contact-display.c @@ -445,8 +445,7 @@ contact_display_load_status_changed (WebKitWebView *web_view, } static void -contact_display_update_actions (EWebView *web_view, - GdkEventButton *event) +contact_display_update_actions (EWebView *web_view) { GtkActionGroup *action_group; gboolean scheme_is_internal_mailto; @@ -456,7 +455,7 @@ contact_display_update_actions (EWebView *web_view, /* Chain up to parent's update_actions() method. */ E_WEB_VIEW_CLASS (eab_contact_display_parent_class)-> - update_actions (web_view, event); + update_actions (web_view); uri = e_web_view_get_selected_uri (web_view); |