Accounts window instance init method instead of init
authorJose Dapena Paz <jdapena@igalia.com>
Thu, 27 Nov 2008 11:01:19 +0000 (11:01 +0000)
committerJose Dapena Paz <jdapena@igalia.com>
Thu, 27 Nov 2008 11:01:19 +0000 (11:01 +0000)
pmo-drop-split-view-r6434

src/hildon2/modest-accounts-window.c

index 3a2275a..1748284 100644 (file)
@@ -46,7 +46,7 @@
 
 /* 'private'/'protected' functions */
 static void modest_accounts_window_class_init  (ModestAccountsWindowClass *klass);
-static void modest_accounts_window_init        (ModestAccountsWindow *obj);
+static void modest_accounts_window_instance_init (ModestAccountsWindow *obj);
 static void modest_accounts_window_finalize    (GObject *obj);
 
 static void connect_signals (ModestAccountsWindow *self);
@@ -97,7 +97,7 @@ modest_accounts_window_get_type (void)
                        NULL,           /* class data */
                        sizeof(ModestAccountsWindow),
                        1,              /* n_preallocs */
-                       (GInstanceInitFunc) modest_accounts_window_init,
+                       (GInstanceInitFunc) modest_accounts_window_instance_init,
                        NULL
                };
                my_type = g_type_register_static (MODEST_TYPE_WINDOW,
@@ -125,7 +125,7 @@ modest_accounts_window_class_init (ModestAccountsWindowClass *klass)
 }
 
 static void
-modest_accounts_window_init (ModestAccountsWindow *obj)
+modest_accounts_window_instance_init (ModestAccountsWindow *obj)
 {
        ModestAccountsWindowPrivate *priv;