aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--libempathy/empathy-tp-contact-list.c8
2 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index adf65efa0..fb77c9414 100644
--- 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.
diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c
index ae178dd06..f5d565ed8 100644
--- a/libempathy/empathy-tp-contact-list.c
+++ b/libempathy/empathy-tp-contact-list.c
@@ -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;
}