diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-04-21 07:07:17 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-04-22 18:21:15 +0800 |
commit | 3c2d7465f6c1e1968b3f4e07d6897e96a14b61ac (patch) | |
tree | d4b780ce596da9e60369b9c945db3b650d00256e | |
parent | ce64e9fc90ebbca2a9f36cb55cd0c837f1da2e27 (diff) | |
download | gsoc2013-empathy-3c2d7465f6c1e1968b3f4e07d6897e96a14b61ac.tar gsoc2013-empathy-3c2d7465f6c1e1968b3f4e07d6897e96a14b61ac.tar.gz gsoc2013-empathy-3c2d7465f6c1e1968b3f4e07d6897e96a14b61ac.tar.bz2 gsoc2013-empathy-3c2d7465f6c1e1968b3f4e07d6897e96a14b61ac.tar.lz gsoc2013-empathy-3c2d7465f6c1e1968b3f4e07d6897e96a14b61ac.tar.xz gsoc2013-empathy-3c2d7465f6c1e1968b3f4e07d6897e96a14b61ac.tar.zst gsoc2013-empathy-3c2d7465f6c1e1968b3f4e07d6897e96a14b61ac.zip |
Make the comment for group hash table more explicit
-rw-r--r-- | libempathy/empathy-tp-contact-list.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c index f2c552c1b..cf1617aec 100644 --- a/libempathy/empathy-tp-contact-list.c +++ b/libempathy/empathy-tp-contact-list.c @@ -833,7 +833,8 @@ empathy_tp_contact_list_init (EmpathyTpContactList *list) list->priv = priv; - /* Map group's name to group's channel */ + /* Map group's name to group's TpChannel. The group name string is owned + * by the TpChannel object */ priv->groups = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, (GDestroyNotify) g_object_unref); |