From 8a9a8bc51095f76e502293b463de676a1f6bc517 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 29 Nov 2010 15:40:11 +0100 Subject: chat-window: cache the UI GSettings --- src/empathy-chat-window.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/empathy-chat-window.c') diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c index 7698d26f4..6616a18d7 100644 --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -114,6 +114,7 @@ typedef struct { GSettings *gsettings_chat; GSettings *gsettings_notif; + GSettings *gsettings_ui; } EmpathyChatWindowPriv; static GList *chat_windows = NULL; @@ -1871,6 +1872,7 @@ chat_window_finalize (GObject *object) g_object_unref (priv->notify_mgr); g_object_unref (priv->gsettings_chat); g_object_unref (priv->gsettings_notif); + g_object_unref (priv->gsettings_ui); if (priv->notification != NULL) { notify_notification_close (priv->notification, NULL); @@ -1983,6 +1985,7 @@ empathy_chat_window_init (EmpathyChatWindow *window) priv->gsettings_chat = g_settings_new (EMPATHY_PREFS_CHAT_SCHEMA); priv->gsettings_notif = g_settings_new (EMPATHY_PREFS_NOTIFICATIONS_SCHEMA); + priv->gsettings_ui = g_settings_new (EMPATHY_PREFS_UI_SCHEMA); priv->chatroom_manager = empathy_chatroom_manager_dup_singleton (NULL); priv->notebook = gtk_notebook_new (); @@ -2180,15 +2183,12 @@ empathy_chat_window_add_chat (EmpathyChatWindow *window, /* If this window has just been created, position it */ if (priv->chats == NULL) { - GSettings *gsettings = g_settings_new (EMPATHY_PREFS_UI_SCHEMA); const gchar *name = "chat-window"; gboolean separate_windows; - separate_windows = g_settings_get_boolean (gsettings, + separate_windows = g_settings_get_boolean (priv->gsettings_ui, EMPATHY_PREFS_UI_SEPARATE_CHAT_WINDOWS); - g_object_unref (gsettings); - if (empathy_chat_is_room (chat)) name = "room-window"; -- cgit v1.2.3