diff options
author | Christian Persch <chpe@gnome.org> | 2007-07-10 20:49:44 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-07-10 20:49:44 +0800 |
commit | 95ac5a2bd737019b90c6c530eb80577286cbcc30 (patch) | |
tree | 545ddf20ff7e3b380ac30150591f7fa78633460f /src | |
parent | cef2549d68c0dbb4aa19269b3978b573c473411b (diff) | |
download | gsoc2013-epiphany-95ac5a2bd737019b90c6c530eb80577286cbcc30.tar gsoc2013-epiphany-95ac5a2bd737019b90c6c530eb80577286cbcc30.tar.gz gsoc2013-epiphany-95ac5a2bd737019b90c6c530eb80577286cbcc30.tar.bz2 gsoc2013-epiphany-95ac5a2bd737019b90c6c530eb80577286cbcc30.tar.lz gsoc2013-epiphany-95ac5a2bd737019b90c6c530eb80577286cbcc30.tar.xz gsoc2013-epiphany-95ac5a2bd737019b90c6c530eb80577286cbcc30.tar.zst gsoc2013-epiphany-95ac5a2bd737019b90c6c530eb80577286cbcc30.zip |
Port to new tooltips API.
2007-07-10 Christian Persch <chpe@gnome.org>
* src/ephy-fullscreen-popup.c:
(ephy_fullscreen_popup_set_security_state),
(ephy_fullscreen_popup_constructor),
(ephy_fullscreen_popup_finalize):
Port to new tooltips API.
svn path=/trunk/; revision=7134
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-fullscreen-popup.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/ephy-fullscreen-popup.c b/src/ephy-fullscreen-popup.c index b04d12122..800691a02 100644 --- a/src/ephy-fullscreen-popup.c +++ b/src/ephy-fullscreen-popup.c @@ -29,7 +29,6 @@ #include <gtk/gtkstock.h> #include <gtk/gtkimage.h> #include <gtk/gtkeventbox.h> -#include <gtk/gtktooltips.h> #include <gtk/gtkenums.h> #include <gtk/gtkbox.h> #include <gtk/gtkhbox.h> @@ -43,7 +42,6 @@ struct _EphyFullscreenPopupPrivate { EphyWindow *window; - GtkTooltips *tooltips; GtkWidget *frame; EphySpinner *spinner; GtkWidget *lock; @@ -198,9 +196,9 @@ ephy_fullscreen_popup_set_security_state (EphyFullscreenPopup *popup, { EphyFullscreenPopupPrivate *priv = popup->priv; - priv->show_lock = show_lock; + priv->show_lock = show_lock != FALSE; gtk_image_set_from_stock (GTK_IMAGE (priv->lock), stock, GTK_ICON_SIZE_BUTTON); - gtk_tooltips_set_tip (priv->tooltips, priv->lock_ebox, tooltip, NULL); + gtk_widget_set_tooltip_text (priv->lock, tooltip); ephy_fullscreen_popup_update_visibility (popup); } @@ -238,9 +236,6 @@ ephy_fullscreen_popup_constructor (GType type, gtk_window_set_resizable (window, FALSE); - priv->tooltips = gtk_tooltips_new (); - g_object_ref_sink (priv->tooltips); - hbox = gtk_hbox_new (FALSE, 2); gtk_container_add (GTK_CONTAINER (window), hbox); gtk_widget_show (hbox); @@ -301,8 +296,6 @@ ephy_fullscreen_popup_finalize (GObject *object) g_signal_handlers_disconnect_matched (priv->window, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, popup); - g_object_unref (priv->tooltips); - parent_class->finalize (object); } |