diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-12-16 17:24:35 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-12-16 17:24:35 +0800 |
commit | 109f46a8278fc797ba526f69f44335063903066c (patch) | |
tree | e65ec3672e6c2df4ede307296d81adf348c7e560 /libempathy-gtk/empathy-chat.c | |
parent | 031e66bd2b0b63a6d33d3242e24392e2109a82e2 (diff) | |
download | gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.tar gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.tar.gz gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.tar.bz2 gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.tar.lz gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.tar.xz gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.tar.zst gsoc2013-empathy-109f46a8278fc797ba526f69f44335063903066c.zip |
Completely rework the theming system to make easy implementing themes based on other classes like webkit.
svn path=/trunk/; revision=1993
Diffstat (limited to 'libempathy-gtk/empathy-chat.c')
-rw-r--r-- | libempathy-gtk/empathy-chat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-chat.c b/libempathy-gtk/empathy-chat.c index 72b46278a..5fd61dbdc 100644 --- a/libempathy-gtk/empathy-chat.c +++ b/libempathy-gtk/empathy-chat.c @@ -48,7 +48,7 @@ #include "empathy-contact-list-store.h" #include "empathy-contact-list-view.h" #include "empathy-contact-menu.h" -#include "empathy-chat-text-view.h" +#include "empathy-theme-manager.h" #include "empathy-smiley-manager.h" #include "empathy-ui-utils.h" @@ -1269,8 +1269,8 @@ chat_create_ui (EmpathyChat *chat) g_free (filename); g_object_unref (glade); - /* Add message GtkTextView. */ - chat->view = EMPATHY_CHAT_VIEW (empathy_chat_text_view_new ()); + /* Add message view. */ + chat->view = empathy_theme_manager_create_view (empathy_theme_manager_get ()); g_signal_connect (chat->view, "focus_in_event", G_CALLBACK (chat_text_view_focus_in_event_cb), chat); |