]> git.0d.be Git - empathy.git/commitdiff
Add back protocol group.
authorXavier Claessens <xclaesse@gmail.com>
Tue, 2 Oct 2007 08:42:16 +0000 (08:42 +0000)
committerXavier Claessens <xclaesse@src.gnome.org>
Tue, 2 Oct 2007 08:42:16 +0000 (08:42 +0000)
2007-10-02  Xavier Claessens  <xclaesse@gmail.com>

* libempathy/empathy-tp-contact-list.c: Add back protocol group.

svn path=/trunk/; revision=357

ChangeLog
libempathy/empathy-tp-contact-list.c

index adf65efa03012bee22042b121a98fa11ebdcfdd2..fb77c9414868f733e1b6353a87d8c54b89cc5581 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-10-02  Xavier Claessens  <xclaesse@gmail.com>
+
+       * libempathy/empathy-tp-contact-list.c: Add back protocol group.
+
 2007-10-01  Xavier Claessens  <xclaesse@gmail.com>
 
        * libempathy-gtk/empathy-contact-list-view.c: Add a #ifdef HAVE_VOIP.
index ae178dd068099467a5c5c76db4d9647009c36e6a..f5d565ed87cad6b01eebe870de7305dc665d876c 100644 (file)
@@ -825,6 +825,10 @@ tp_contact_list_get_all_groups (EmpathyContactList *list)
                groups = g_list_prepend (groups, g_strdup (name));
        }
 
+       if (priv->protocol_group) {
+               groups = g_list_prepend (groups, g_strdup (priv->protocol_group));
+       }
+
        return groups;
 }
 
@@ -847,6 +851,10 @@ tp_contact_list_get_groups (EmpathyContactList *list,
                ret = g_list_prepend (ret, g_strdup (l->data));
        }
 
+       if (priv->protocol_group) {
+               ret = g_list_prepend (ret, g_strdup (priv->protocol_group));
+       }
+
        return ret;
 }