empathy r942 - trunk/libempathy-gtk



Author: xclaesse
Date: Mon Apr 14 16:26:50 2008
New Revision: 942
URL: http://svn.gnome.org/viewvc/empathy?rev=942&view=rev

Log:
Fix bug #525084.


Modified:
   trunk/libempathy-gtk/empathy-contact-list-store.c

Modified: trunk/libempathy-gtk/empathy-contact-list-store.c
==============================================================================
--- trunk/libempathy-gtk/empathy-contact-list-store.c	(original)
+++ trunk/libempathy-gtk/empathy-contact-list-store.c	Mon Apr 14 16:26:50 2008
@@ -30,6 +30,7 @@
 #include <glib.h>
 #include <gtk/gtk.h>
 
+#include <telepathy-glib/util.h>
 #include <libempathy/empathy-debug.h>
 
 #include "empathy-contact-list-store.h"
@@ -1240,7 +1241,7 @@
 			    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;
 	}



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