aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/e-mail-config-web-view.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-12-06 21:23:20 +0800
committerMilan Crha <mcrha@redhat.com>2010-12-06 21:23:20 +0800
commit22b2d26d048476d4909bfcf348ce6567e0d006a0 (patch)
tree8902ba49d7ed1ac85a7a619bed720de6ca5cda66 /modules/mail/e-mail-config-web-view.c
parentdad3815a75bef3a119ff65184b4c0fc4c3edffdf (diff)
downloadgsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar
gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar.gz
gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar.bz2
gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar.lz
gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar.xz
gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.tar.zst
gsoc2013-evolution-22b2d26d048476d4909bfcf348ce6567e0d006a0.zip
Free/busy meeting view doesn't work due to non-working extension
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;