From 9cae8fb44d9d76ad88d09527f48192dffba57711 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 17 Feb 2011 11:15:48 +0100 Subject: rename empathy_theme_manager_get() to empathy_theme_manager_dup_singleton() We also don't leak it any more. --- libempathy-gtk/empathy-log-window.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'libempathy-gtk/empathy-log-window.c') diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index 650c3b442..d3f566777 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -223,6 +223,7 @@ empathy_log_window_show (TpAccount *account, GtkBuilder *gui; gchar *filename; EmpathyLogWindow *window; + EmpathyThemeManager *theme_mgr; if (log_window != NULL) { gtk_window_present (GTK_WINDOW (log_window->window)); @@ -286,16 +287,18 @@ empathy_log_window_show (TpAccount *account, window); /* Configure Search EmpathyChatView */ - window->chatview_find = empathy_theme_manager_create_view (empathy_theme_manager_get ()); + theme_mgr = empathy_theme_manager_dup_singleton (); + window->chatview_find = empathy_theme_manager_create_view (theme_mgr); gtk_container_add (GTK_CONTAINER (window->scrolledwindow_find), GTK_WIDGET (window->chatview_find)); gtk_widget_show (GTK_WIDGET (window->chatview_find)); /* Configure Contacts EmpathyChatView */ - window->chatview_chats = empathy_theme_manager_create_view (empathy_theme_manager_get ()); + window->chatview_chats = empathy_theme_manager_create_view (theme_mgr); gtk_container_add (GTK_CONTAINER (window->scrolledwindow_chats), GTK_WIDGET (window->chatview_chats)); gtk_widget_show (GTK_WIDGET (window->chatview_chats)); + g_object_unref (theme_mgr); /* Account chooser for chats */ window->account_chooser_chats = empathy_account_chooser_new (); -- cgit v1.2.3