[empathy: 69/80] log_window_chats_set_selected: only act on normal rows



commit 9f2331fcb2254a28e17a607cc3f614187dd64af9
Author: Emilio Pozuelo Monfort <emilio pozuelo collabora co uk>
Date:   Tue May 17 15:34:08 2011 +0100

    log_window_chats_set_selected: only act on normal rows

 libempathy-gtk/empathy-log-window.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)
---
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c
index 42ac4fa..0056ebe 100644
--- a/libempathy-gtk/empathy-log-window.c
+++ b/libempathy-gtk/empathy-log-window.c
@@ -2004,12 +2004,17 @@ log_window_chats_set_selected (EmpathyLogWindow *window)
       TplEntity   *this_target;
       const gchar *this_chat_id;
       gboolean     this_is_chatroom;
+      gint         this_type;
 
       gtk_tree_model_get (model, &iter,
+          COL_WHO_TYPE, &this_type,
           COL_WHO_ACCOUNT, &this_account,
           COL_WHO_TARGET, &this_target,
           -1);
 
+      if (this_type != COL_TYPE_NORMAL)
+        continue;
+
       this_chat_id = tpl_entity_get_identifier (this_target);
       this_is_chatroom = tpl_entity_get_entity_type (this_target)
           == TPL_ENTITY_ROOM;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]