From 569c0b8957f72a0d1681dcf08eafb2aaf63934e9 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Mon, 14 Apr 2008 15:26:50 +0000 Subject: Fix bug #525084. svn path=/trunk/; revision=942 --- libempathy-gtk/empathy-contact-list-store.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libempathy-gtk/empathy-contact-list-store.c') diff --git a/libempathy-gtk/empathy-contact-list-store.c b/libempathy-gtk/empathy-contact-list-store.c index 1b3311810..b446fd19e 100644 --- a/libempathy-gtk/empathy-contact-list-store.c +++ b/libempathy-gtk/empathy-contact-list-store.c @@ -30,6 +30,7 @@ #include #include +#include #include #include "empathy-contact-list-store.h" @@ -1240,7 +1241,7 @@ contact_list_store_get_group_foreach (GtkTreeModel *model, EMPATHY_CONTACT_LIST_STORE_COL_IS_GROUP, &is_group, -1); - if (is_group && strcmp (str, fg->name) == 0) { + if (is_group && !tp_strdiff (str, fg->name)) { fg->found = TRUE; fg->iter = *iter; } -- cgit v1.2.3