Checkpoint for the module's base_init.
authorsalva <salva@salva-desktop.(none)>
Sat, 5 Dec 2009 20:21:23 +0000 (22:21 +0200)
committersalva <salva@salva-desktop.(none)>
Sat, 5 Dec 2009 20:21:23 +0000 (22:21 +0200)
maemo-tweaks-module.c

index 076caba..95c2485 100644 (file)
@@ -9,3 +9,14 @@ void maemo_tweaks_module_build (MaemoTweaksModule *self)
     MAEMO_TWEAKS_MODULE_GET_INTERFACE (self)->build (self);
 }
 
+static void maemo_tweaks_module_base_init (gpointer g_iface)
+{
+    static gboolean initialized = FALSE;
+
+    if (!initialized)
+    {
+        /* TODO: create interface signals here. */
+        initialized = TRUE;
+    }
+}
+