aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2012-03-15 16:47:52 +0800
committerXan Lopez <xan@igalia.com>2012-03-15 16:47:52 +0800
commitc92bf9e0656c505674df45a5fbf2d34ab7017ca2 (patch)
tree3d71b4b78334c550ff2f7c5f81fd1f532755e8cf /embed
parent3c4521680d8d06bbfa0ec878953fafe69ae84abb (diff)
downloadgsoc2013-epiphany-c92bf9e0656c505674df45a5fbf2d34ab7017ca2.tar
gsoc2013-epiphany-c92bf9e0656c505674df45a5fbf2d34ab7017ca2.tar.gz
gsoc2013-epiphany-c92bf9e0656c505674df45a5fbf2d34ab7017ca2.tar.bz2
gsoc2013-epiphany-c92bf9e0656c505674df45a5fbf2d34ab7017ca2.tar.lz
gsoc2013-epiphany-c92bf9e0656c505674df45a5fbf2d34ab7017ca2.tar.xz
gsoc2013-epiphany-c92bf9e0656c505674df45a5fbf2d34ab7017ca2.tar.zst
gsoc2013-epiphany-c92bf9e0656c505674df45a5fbf2d34ab7017ca2.zip
ephy-web-view: connect to WebView signals in just one place
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-web-view.c20
1 files changed, 12 insertions, 8 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c
index 689835af9..24443f28c 100644
--- a/embed/ephy-web-view.c
+++ b/embed/ephy-web-view.c
@@ -1196,14 +1196,6 @@ hovering_over_link_cb (EphyWebView *web_view,
static void
ephy_web_view_constructed (GObject *object)
{
- EphyWebView *web_view = EPHY_WEB_VIEW (object);
-
- g_object_connect (web_view,
- "signal::notify::title", G_CALLBACK (title_changed_cb), NULL,
- "signal::notify::uri", G_CALLBACK (uri_changed_cb), NULL,
- "signal::hovering-over-link", G_CALLBACK (hovering_over_link_cb), NULL,
- NULL);
-
/* Use full content zooming by default */
/* FIXME: we could make this configurable through GSettings, or have
* different keys for text and full content zooming. AFAIK you can
@@ -2391,6 +2383,18 @@ ephy_web_view_init (EphyWebView *web_view)
G_CALLBACK (zoom_changed_cb),
NULL);
+ g_signal_connect (web_view, "notify::title",
+ G_CALLBACK (title_changed_cb),
+ NULL);
+
+ g_signal_connect (web_view, "notify::uri",
+ G_CALLBACK (uri_changed_cb),
+ NULL);
+
+ g_signal_connect (web_view, "hovering-over-link",
+ G_CALLBACK (hovering_over_link_cb),
+ NULL);
+
g_signal_connect_object (web_view, "icon-loaded",
G_CALLBACK (favicon_cb),
web_view, (GConnectFlags)0);