diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-12-16 17:23:47 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-12-16 17:23:47 +0800 |
commit | 3b6cc6f01b861c217a52fecd068b8fb009adc792 (patch) | |
tree | 5e83510dacdc3c4d76df002b00e4439545f1c3fa /libempathy-gtk/empathy-log-window.c | |
parent | 486b00253feb6c84b0c0d491d6aeb14b1ab8da1e (diff) | |
download | gsoc2013-empathy-3b6cc6f01b861c217a52fecd068b8fb009adc792.tar gsoc2013-empathy-3b6cc6f01b861c217a52fecd068b8fb009adc792.tar.gz gsoc2013-empathy-3b6cc6f01b861c217a52fecd068b8fb009adc792.tar.bz2 gsoc2013-empathy-3b6cc6f01b861c217a52fecd068b8fb009adc792.tar.lz gsoc2013-empathy-3b6cc6f01b861c217a52fecd068b8fb009adc792.tar.xz gsoc2013-empathy-3b6cc6f01b861c217a52fecd068b8fb009adc792.tar.zst gsoc2013-empathy-3b6cc6f01b861c217a52fecd068b8fb009adc792.zip |
Fix licence and clean up a bit the interface
svn path=/trunk/; revision=1981
Diffstat (limited to 'libempathy-gtk/empathy-log-window.c')
-rw-r--r-- | libempathy-gtk/empathy-log-window.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index 89dbd09c9..355b70902 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -41,6 +41,7 @@ #include "empathy-log-window.h" #include "empathy-account-chooser.h" #include "empathy-chat-view.h" +#include "empathy-chat-simple-view.h" #include "empathy-ui-utils.h" #define DEBUG_FLAG EMPATHY_DEBUG_OTHER @@ -207,13 +208,13 @@ empathy_log_window_show (McAccount *account, window); /* Configure Search EmpathyChatView */ - window->chatview_find = empathy_chat_view_new (); + window->chatview_find = EMPATHY_CHAT_VIEW (empathy_chat_simple_view_new ()); 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_new (); + window->chatview_chats = EMPATHY_CHAT_VIEW (empathy_chat_simple_view_new ()); gtk_container_add (GTK_CONTAINER (window->scrolledwindow_chats), GTK_WIDGET (window->chatview_chats)); gtk_widget_show (GTK_WIDGET (window->chatview_chats)); |