diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-02-17 18:15:48 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-02-17 21:48:40 +0800 |
commit | 4ee8d2a57e3165f036edf53e336282c1cab88b89 (patch) | |
tree | cc56885cc495e4eb7c1b7abb4ae81887aee49f1f | |
parent | e42a54e9e1bfe9a16ad319dc182b3e55caf69f90 (diff) | |
download | gsoc2013-empathy-4ee8d2a57e3165f036edf53e336282c1cab88b89.tar gsoc2013-empathy-4ee8d2a57e3165f036edf53e336282c1cab88b89.tar.gz gsoc2013-empathy-4ee8d2a57e3165f036edf53e336282c1cab88b89.tar.bz2 gsoc2013-empathy-4ee8d2a57e3165f036edf53e336282c1cab88b89.tar.lz gsoc2013-empathy-4ee8d2a57e3165f036edf53e336282c1cab88b89.tar.xz gsoc2013-empathy-4ee8d2a57e3165f036edf53e336282c1cab88b89.tar.zst gsoc2013-empathy-4ee8d2a57e3165f036edf53e336282c1cab88b89.zip |
rename empathy_theme_manager_get() to empathy_theme_manager_dup_singleton()
We also don't leak it any more.
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 5 | ||||
-rw-r--r-- | libempathy-gtk/empathy-log-window.c | 7 | ||||
-rw-r--r-- | libempathy-gtk/empathy-theme-manager.c | 2 | ||||
-rw-r--r-- | libempathy-gtk/empathy-theme-manager.h | 2 |
4 files changed, 11 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index f9c5e4272..814f0a760 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -2426,6 +2426,7 @@ chat_create_ui (EmpathyChat *chat) gchar *filename; GtkTextBuffer *buffer; gint paned_pos; + EmpathyThemeManager *theme_mgr; filename = empathy_file_lookup ("empathy-chat.ui", "libempathy-gtk"); @@ -2451,7 +2452,9 @@ chat_create_ui (EmpathyChat *chat) g_free (filename); /* Add message view. */ - chat->view = empathy_theme_manager_create_view (empathy_theme_manager_get ()); + theme_mgr = empathy_theme_manager_dup_singleton (); + chat->view = empathy_theme_manager_create_view (theme_mgr); + g_object_unref (theme_mgr); /* If this is a GtkTextView, it's set as a drag destination for text/plain and other types, even though it's non-editable and doesn't accept any drags. This steals drag motion for anything inside the scrollbars, diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index 73a931698..256b0704c 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -221,6 +221,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)); @@ -282,16 +283,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 (); diff --git a/libempathy-gtk/empathy-theme-manager.c b/libempathy-gtk/empathy-theme-manager.c index bcad60538..a5438c6b3 100644 --- a/libempathy-gtk/empathy-theme-manager.c +++ b/libempathy-gtk/empathy-theme-manager.c @@ -523,7 +523,7 @@ empathy_theme_manager_init (EmpathyThemeManager *manager) } EmpathyThemeManager * -empathy_theme_manager_get (void) +empathy_theme_manager_dup_singleton (void) { static EmpathyThemeManager *manager = NULL; diff --git a/libempathy-gtk/empathy-theme-manager.h b/libempathy-gtk/empathy-theme-manager.h index a459b43cb..c60dc0cd9 100644 --- a/libempathy-gtk/empathy-theme-manager.h +++ b/libempathy-gtk/empathy-theme-manager.h @@ -49,7 +49,7 @@ struct _EmpathyThemeManagerClass { }; GType empathy_theme_manager_get_type (void) G_GNUC_CONST; -EmpathyThemeManager * empathy_theme_manager_get (void); +EmpathyThemeManager * empathy_theme_manager_dup_singleton (void); const gchar ** empathy_theme_manager_get_themes (void); GList * empathy_theme_manager_get_adium_themes (void); EmpathyChatView * empathy_theme_manager_create_view (EmpathyThemeManager *manager); |