diff options
author | Milan Crha <mcrha@redhat.com> | 2014-07-17 18:46:38 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2014-07-17 18:46:38 +0800 |
commit | bcc3a1c7e641830622690116907c02b7f89183d7 (patch) | |
tree | 108cc4feb3c005de920a4b0c86cf414ec7d89e99 /modules/web-inspector/evolution-web-inspector.c | |
parent | 968a7477c72124fc0f7af837b4894db6ee4553d2 (diff) | |
download | gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.tar gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.tar.gz gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.tar.bz2 gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.tar.lz gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.tar.xz gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.tar.zst gsoc2013-evolution-bcc3a1c7e641830622690116907c02b7f89183d7.zip |
Add missing chain-up-s to parent's constructed() method
Plus a little code cleanup for easier grepping.
Diffstat (limited to 'modules/web-inspector/evolution-web-inspector.c')
-rw-r--r-- | modules/web-inspector/evolution-web-inspector.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/web-inspector/evolution-web-inspector.c b/modules/web-inspector/evolution-web-inspector.c index ab385bedbc..6ccba80577 100644 --- a/modules/web-inspector/evolution-web-inspector.c +++ b/modules/web-inspector/evolution-web-inspector.c @@ -113,6 +113,9 @@ web_inspector_constructed (GObject *object) WebKitWebSettings *settings; WebKitWebInspector *inspector; + /* Chain up to parent's method. */ + G_OBJECT_CLASS (e_web_inspector_parent_class)->constructed (object); + extension = E_WEB_INSPECTOR (object); web_view = web_inspector_get_web_view (extension); settings = webkit_web_view_get_settings (web_view); |