aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-log-window.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-02-17 18:15:48 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-02-17 21:47:39 +0800
commit9cae8fb44d9d76ad88d09527f48192dffba57711 (patch)
treedd0e01a1824962f484d7f2ada0980177a13e3716 /libempathy-gtk/empathy-log-window.c
parent382bb4914eb08c7c1472350633b1fe91bba50c05 (diff)
downloadgsoc2013-empathy-9cae8fb44d9d76ad88d09527f48192dffba57711.tar
gsoc2013-empathy-9cae8fb44d9d76ad88d09527f48192dffba57711.tar.gz
gsoc2013-empathy-9cae8fb44d9d76ad88d09527f48192dffba57711.tar.bz2
gsoc2013-empathy-9cae8fb44d9d76ad88d09527f48192dffba57711.tar.lz
gsoc2013-empathy-9cae8fb44d9d76ad88d09527f48192dffba57711.tar.xz
gsoc2013-empathy-9cae8fb44d9d76ad88d09527f48192dffba57711.tar.zst
gsoc2013-empathy-9cae8fb44d9d76ad88d09527f48192dffba57711.zip
rename empathy_theme_manager_get() to empathy_theme_manager_dup_singleton()
We also don't leak it any more.
Diffstat (limited to 'libempathy-gtk/empathy-log-window.c')
-rw-r--r--libempathy-gtk/empathy-log-window.c7
1 files changed, 5 insertions, 2 deletions
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 ();