CamelStore: Chain up in the constructed() method
authorMatthew Barnes <mbarnes@redhat.com>
Fri, 22 Apr 2011 12:48:51 +0000 (08:48 -0400)
committerMatthew Barnes <mbarnes@redhat.com>
Fri, 22 Apr 2011 12:48:51 +0000 (08:48 -0400)
Forgot to add that part yesterday.  Nothing works without it.

camel/camel-store.c

index 92132ef..077f5d6 100644 (file)
@@ -258,6 +258,9 @@ store_constructed (GObject *object)
        CamelStore *store;
        CamelStoreClass *class;
 
+       /* Chain up to parent's constructed() method. */
+       G_OBJECT_CLASS (camel_store_parent_class)->constructed (object);
+
        store = CAMEL_STORE (object);
        class = CAMEL_STORE_GET_CLASS (store);