aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-log-window.c
diff options
context:
space:
mode:
authorxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-12-16 17:24:35 +0800
committerxclaesse <xclaesse@4ee84921-47dd-4033-b63a-18d7a039a3e4>2008-12-16 17:24:35 +0800
commit40d7a5f59c1f9e6f29108238e77c206ed453883f (patch)
treee65ec3672e6c2df4ede307296d81adf348c7e560 /libempathy-gtk/empathy-log-window.c
parenta4c5b1a7462ff78724f38729b8c3556395c6bcfb (diff)
downloadgsoc2013-empathy-40d7a5f59c1f9e6f29108238e77c206ed453883f.tar
gsoc2013-empathy-40d7a5f59c1f9e6f29108238e77c206ed453883f.tar.gz
gsoc2013-empathy-40d7a5f59c1f9e6f29108238e77c206ed453883f.tar.bz2
gsoc2013-empathy-40d7a5f59c1f9e6f29108238e77c206ed453883f.tar.lz
gsoc2013-empathy-40d7a5f59c1f9e6f29108238e77c206ed453883f.tar.xz
gsoc2013-empathy-40d7a5f59c1f9e6f29108238e77c206ed453883f.tar.zst
gsoc2013-empathy-40d7a5f59c1f9e6f29108238e77c206ed453883f.zip
Completely rework the theming system to make easy implementing themes based on other classes like webkit.
git-svn-id: svn+ssh://svn.gnome.org/svn/empathy/trunk@1993 4ee84921-47dd-4033-b63a-18d7a039a3e4
Diffstat (limited to 'libempathy-gtk/empathy-log-window.c')
-rw-r--r--libempathy-gtk/empathy-log-window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c
index 972a64b90..6020630d6 100644
--- a/libempathy-gtk/empathy-log-window.c
+++ b/libempathy-gtk/empathy-log-window.c
@@ -41,7 +41,7 @@
#include "empathy-log-window.h"
#include "empathy-account-chooser.h"
#include "empathy-chat-view.h"
-#include "empathy-chat-text-view.h"
+#include "empathy-theme-manager.h"
#include "empathy-ui-utils.h"
#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
@@ -208,13 +208,13 @@ empathy_log_window_show (McAccount *account,
window);
/* Configure Search EmpathyChatView */
- window->chatview_find = EMPATHY_CHAT_VIEW (empathy_chat_text_view_new ());
+ window->chatview_find = empathy_theme_manager_create_view (empathy_theme_manager_get ());
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_CHAT_VIEW (empathy_chat_text_view_new ());
+ window->chatview_chats = empathy_theme_manager_create_view (empathy_theme_manager_get ());
gtk_container_add (GTK_CONTAINER (window->scrolledwindow_chats),
GTK_WIDGET (window->chatview_chats));
gtk_widget_show (GTK_WIDGET (window->chatview_chats));