aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-theme-manager.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-07-02 21:40:16 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-07-02 21:56:38 +0800
commit87f41f93a0c79b428e0eff6f9f843fce005b82ae (patch)
tree794474b3a25b6901cb5e8f942805774a52f13198 /libempathy-gtk/empathy-theme-manager.c
parent7f2b924f50433a6240bb8feaf95b423cb6124b12 (diff)
downloadgsoc2013-empathy-87f41f93a0c79b428e0eff6f9f843fce005b82ae.tar
gsoc2013-empathy-87f41f93a0c79b428e0eff6f9f843fce005b82ae.tar.gz
gsoc2013-empathy-87f41f93a0c79b428e0eff6f9f843fce005b82ae.tar.bz2
gsoc2013-empathy-87f41f93a0c79b428e0eff6f9f843fce005b82ae.tar.lz
gsoc2013-empathy-87f41f93a0c79b428e0eff6f9f843fce005b82ae.tar.xz
gsoc2013-empathy-87f41f93a0c79b428e0eff6f9f843fce005b82ae.tar.zst
gsoc2013-empathy-87f41f93a0c79b428e0eff6f9f843fce005b82ae.zip
Stop using EmpathyChatView
https://bugzilla.gnome.org/show_bug.cgi?id=679255
Diffstat (limited to 'libempathy-gtk/empathy-theme-manager.c')
-rw-r--r--libempathy-gtk/empathy-theme-manager.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-theme-manager.c b/libempathy-gtk/empathy-theme-manager.c
index a74b3c823..7d21b7960 100644
--- a/libempathy-gtk/empathy-theme-manager.c
+++ b/libempathy-gtk/empathy-theme-manager.c
@@ -34,7 +34,6 @@
#include <libempathy/empathy-utils.h>
#include "empathy-theme-manager.h"
-#include "empathy-chat-view.h"
#include "empathy-theme-adium.h"
#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
@@ -189,13 +188,13 @@ theme_manager_notify_adium_variant_cb (GSettings *gsettings_chat,
}
}
-EmpathyChatView *
+EmpathyThemeAdium *
empathy_theme_manager_create_view (EmpathyThemeManager *self)
{
g_return_val_if_fail (EMPATHY_IS_THEME_MANAGER (self), NULL);
if (self->priv->adium_data != NULL)
- return EMPATHY_CHAT_VIEW (theme_manager_create_adium_view (self));
+ return theme_manager_create_adium_view (self);
g_return_val_if_reached (NULL);
}