diff options
-rw-r--r-- | src/app-indicator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c index 0bc33af..d64866d 100644 --- a/src/app-indicator.c +++ b/src/app-indicator.c @@ -611,6 +611,8 @@ app_indicator_init (AppIndicator *self) priv->sec_activate_target = NULL; priv->sec_activate_enabled = FALSE; + self->priv = priv; + /* Start getting the session bus */ g_object_ref(self); /* ref for the bus creation callback */ g_bus_get(G_BUS_TYPE_SESSION, NULL, bus_creation, self); @@ -618,8 +620,6 @@ app_indicator_init (AppIndicator *self) g_signal_connect(G_OBJECT(gtk_icon_theme_get_default()), "changed", G_CALLBACK(theme_changed_cb), self); - self->priv = priv; - return; } |