diff options
author | Christian Persch <chpe@gnome.org> | 2007-07-11 02:50:48 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-07-11 02:50:48 +0800 |
commit | 3050e8c161fe8014ec1757e170b4e6a54ca99d12 (patch) | |
tree | 4fc45088115680c1f915b031ed899f7912600a7d /src/bookmarks | |
parent | e87efd3cf2ee40071d643f54451461a6ecea8e85 (diff) | |
download | gsoc2013-epiphany-3050e8c161fe8014ec1757e170b4e6a54ca99d12.tar.gz gsoc2013-epiphany-3050e8c161fe8014ec1757e170b4e6a54ca99d12.tar.zst gsoc2013-epiphany-3050e8c161fe8014ec1757e170b4e6a54ca99d12.zip |
Use gtk_widget_set_has_tooltip here.
2007-07-10 Christian Persch <chpe@gnome.org>
* src/bookmarks/ephy-bookmark-action.c: (connect_proxy):
Use gtk_widget_set_has_tooltip here.
svn path=/trunk/; revision=7145
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmark-action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks/ephy-bookmark-action.c b/src/bookmarks/ephy-bookmark-action.c index d27305d01..aa6de32e0 100644 --- a/src/bookmarks/ephy-bookmark-action.c +++ b/src/bookmarks/ephy-bookmark-action.c @@ -485,7 +485,7 @@ connect_proxy (GtkAction *action, G_CALLBACK (toolbar_reconfigured_cb), action); /* FIXME: maybe make the tooltip cover only the button, not also the entry (if there is one?) */ - g_object_set (proxy, "has-tooltip", TRUE, NULL); + gtk_widget_set_has_tooltip (proxy, TRUE); g_signal_connect (proxy, "query-tooltip", G_CALLBACK (query_tooltip_cb), action); |