aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/e-mail-config-web-view.c
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mail/e-mail-config-web-view.c')
-rw-r--r--modules/mail/e-mail-config-web-view.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/mail/e-mail-config-web-view.c b/modules/mail/e-mail-config-web-view.c
index 3157ff07f9..9dda757bd5 100644
--- a/modules/mail/e-mail-config-web-view.c
+++ b/modules/mail/e-mail-config-web-view.c
@@ -22,6 +22,8 @@
#include <e-util/e-extension.h>
#include <misc/e-web-view.h>
+static gpointer parent_class;
+
static void
mail_config_web_view_realize (GtkWidget *widget)
{
@@ -68,6 +70,9 @@ mail_config_web_view_constructed (GObject *object)
g_signal_connect (
extensible, "realize",
G_CALLBACK (mail_config_web_view_realize), NULL);
+
+ if (G_OBJECT_CLASS (parent_class)->constructed)
+ G_OBJECT_CLASS (parent_class)->constructed (object);
}
static void
@@ -75,6 +80,8 @@ mail_config_web_view_class_init (EExtensionClass *class)
{
GObjectClass *object_class;
+ parent_class = g_type_class_peek_parent (class);
+
object_class = G_OBJECT_CLASS (class);
object_class->constructed = mail_config_web_view_constructed;