diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-10-02 04:24:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-10-02 04:24:49 +0800 |
commit | 656178049b4d1b73d4997aa983b778d4eb4054ae (patch) | |
tree | a5ad9c59d4fd231f6b6cb2e77eca139eaac8fe8d /widgets/misc | |
parent | f62728b55e201ea92e682e07b3253ce4fb42d5af (diff) | |
download | gsoc2013-evolution-656178049b4d1b73d4997aa983b778d4eb4054ae.tar.gz gsoc2013-evolution-656178049b4d1b73d4997aa983b778d4eb4054ae.tar.zst gsoc2013-evolution-656178049b4d1b73d4997aa983b778d4eb4054ae.zip |
Build with GTK_DISABLE_DEPRECATED and fix resulting breakage.
Diffstat (limited to 'widgets/misc')
-rw-r--r-- | widgets/misc/e-web-view.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/widgets/misc/e-web-view.c b/widgets/misc/e-web-view.c index afbe2d9455..3a3e62b13b 100644 --- a/widgets/misc/e-web-view.c +++ b/widgets/misc/e-web-view.c @@ -365,9 +365,11 @@ web_view_menu_item_select_cb (EWebView *web_view, GtkWidget *widget) { GtkAction *action; + GtkActivatable *activatable; const gchar *tooltip; - action = gtk_widget_get_action (widget); + activatable = GTK_ACTIVATABLE (widget); + action = gtk_activatable_get_related_action (activatable); tooltip = gtk_action_get_tooltip (action); if (tooltip == NULL) |