diff options
author | Carlos Garcia Campos <cgarcia@igalia.com> | 2012-05-29 20:44:25 +0800 |
---|---|---|
committer | Carlos Garcia Campos <carlosgc@gnome.org> | 2012-06-05 00:18:18 +0800 |
commit | e4a612165350d8d1868b75745f8ffb273f38e8e0 (patch) | |
tree | 352f4303bdda15e89e7b403a0ff51e8202ee83d9 /embed/ephy-web-view.c | |
parent | 30148599ed33d7581878ccc0cd4f637b604f744a (diff) | |
download | gsoc2013-epiphany-e4a612165350d8d1868b75745f8ffb273f38e8e0.tar.gz gsoc2013-epiphany-e4a612165350d8d1868b75745f8ffb273f38e8e0.tar.zst gsoc2013-epiphany-e4a612165350d8d1868b75745f8ffb273f38e8e0.zip |
ephy-web-view: chain up to the parent constructed virtual method
To make sure constructed is called in WebKitWebView if present.
Diffstat (limited to 'embed/ephy-web-view.c')
-rw-r--r-- | embed/ephy-web-view.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 61c1fe1d3..e98e13d28 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -1196,6 +1196,9 @@ hovering_over_link_cb (EphyWebView *web_view, static void ephy_web_view_constructed (GObject *object) { + if (G_OBJECT_CLASS (ephy_web_view_parent_class)->constructed) + G_OBJECT_CLASS (ephy_web_view_parent_class)->constructed (object); + /* 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 |