diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-28 18:57:21 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-28 18:57:21 +0800 |
commit | 60624d233d7a7ea3a49b9c0e0758579627304ae2 (patch) | |
tree | 44282f9de1346aa6c03c23057b6ed6f1323eb4fc /libempathy-gtk | |
parent | b444be51ecdb518760e10720642304d493a213e4 (diff) | |
download | gsoc2013-empathy-60624d233d7a7ea3a49b9c0e0758579627304ae2.tar gsoc2013-empathy-60624d233d7a7ea3a49b9c0e0758579627304ae2.tar.gz gsoc2013-empathy-60624d233d7a7ea3a49b9c0e0758579627304ae2.tar.bz2 gsoc2013-empathy-60624d233d7a7ea3a49b9c0e0758579627304ae2.tar.lz gsoc2013-empathy-60624d233d7a7ea3a49b9c0e0758579627304ae2.tar.xz gsoc2013-empathy-60624d233d7a7ea3a49b9c0e0758579627304ae2.tar.zst gsoc2013-empathy-60624d233d7a7ea3a49b9c0e0758579627304ae2.zip |
Fix previous commit. Oops.
svn path=/trunk/; revision=1925
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-log-window.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index e11a59cd5..b0bfe759c 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -623,16 +623,16 @@ log_window_chats_populate (EmpathyLogWindow *window) account_chooser = EMPATHY_ACCOUNT_CHOOSER (window->account_chooser_chats); account = empathy_account_chooser_get_account (account_chooser); - if (account == NULL) { - gtk_list_store_clear (store); - return; - } - view = GTK_TREE_VIEW (window->treeview_chats); model = gtk_tree_view_get_model (view); selection = gtk_tree_view_get_selection (view); store = GTK_LIST_STORE (model); + if (account == NULL) { + gtk_list_store_clear (store); + return; + } + /* Block signals to stop the logs being retrieved prematurely */ g_signal_handlers_block_by_func (selection, log_window_chats_changed_cb, |