diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 20:52:23 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-05-18 21:01:04 +0800 |
commit | 7d0392564e2a5a6508470b2cfa94f39ec26e64ff (patch) | |
tree | 5a5e2e3bc16a1f517bbb13a690742813bdd92f9f | |
parent | ec20fb7ff4bee998e5ea0ceb6b6670858d21fb1d (diff) | |
download | gsoc2013-empathy-7d0392564e2a5a6508470b2cfa94f39ec26e64ff.tar gsoc2013-empathy-7d0392564e2a5a6508470b2cfa94f39ec26e64ff.tar.gz gsoc2013-empathy-7d0392564e2a5a6508470b2cfa94f39ec26e64ff.tar.bz2 gsoc2013-empathy-7d0392564e2a5a6508470b2cfa94f39ec26e64ff.tar.lz gsoc2013-empathy-7d0392564e2a5a6508470b2cfa94f39ec26e64ff.tar.xz gsoc2013-empathy-7d0392564e2a5a6508470b2cfa94f39ec26e64ff.tar.zst gsoc2013-empathy-7d0392564e2a5a6508470b2cfa94f39ec26e64ff.zip |
empathy-tp-contact-list: fix coding style
-rw-r--r-- | libempathy/empathy-tp-contact-list.c | 14 | ||||
-rw-r--r-- | libempathy/empathy-tp-contact-list.h | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c index dd160224c..116b8cf71 100644 --- a/libempathy/empathy-tp-contact-list.c +++ b/libempathy/empathy-tp-contact-list.c @@ -16,7 +16,7 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * + * * Authors: Xavier Claessens <xclaesse@gmail.com> */ @@ -336,7 +336,7 @@ tp_contact_list_got_added_members_cb (EmpathyTpContactFactory *factory, /* This contact is now member, implicitly accept pending. */ if (g_hash_table_lookup (priv->pendings, GUINT_TO_POINTER (handle))) { - GArray handles = {(gchar*) &handle, 1}; + GArray handles = {(gchar *) &handle, 1}; tp_cli_channel_interface_group_call_add_members (priv->publish, -1, &handles, NULL, NULL, NULL, NULL, NULL); @@ -370,7 +370,7 @@ tp_contact_list_got_local_pending_cb (EmpathyTpContactFactory *factory, handle = empathy_contact_get_handle (contact); if (g_hash_table_lookup (priv->members, GUINT_TO_POINTER (handle))) { - GArray handles = {(gchar*) &handle, 1}; + GArray handles = {(gchar *) &handle, 1}; /* This contact is already member, auto accept. */ tp_cli_channel_interface_group_call_add_members (priv->publish, @@ -446,7 +446,7 @@ tp_contact_list_publish_group_members_changed_cb (TpChannel *channel, * member, otherwise add in pendings. */ if (local_pending->len > 0) { empathy_tp_contact_factory_get_from_handles (priv->factory, - local_pending->len, (TpHandle*) local_pending->data, + local_pending->len, (TpHandle *) local_pending->data, tp_contact_list_got_local_pending_cb, NULL, NULL, G_OBJECT (list)); } @@ -520,7 +520,7 @@ tp_contact_list_subscribe_group_members_changed_cb (TpChannel *channel, /* We now get the presence of those contacts, add them to members */ if (added->len > 0) { empathy_tp_contact_factory_get_from_handles (priv->factory, - added->len, (TpHandle*) added->data, + added->len, (TpHandle *) added->data, tp_contact_list_got_added_members_cb, NULL, NULL, G_OBJECT (list)); } @@ -531,11 +531,11 @@ tp_contact_list_subscribe_group_members_changed_cb (TpChannel *channel, g_array_index (added, TpHandle, i)); } - /* We want those contacts in our contact list but we don't get their + /* We want those contacts in our contact list but we don't get their * presence yet. Add to members anyway. */ if (remote_pending->len > 0) { empathy_tp_contact_factory_get_from_handles (priv->factory, - remote_pending->len, (TpHandle*) remote_pending->data, + remote_pending->len, (TpHandle *) remote_pending->data, tp_contact_list_got_added_members_cb, NULL, NULL, G_OBJECT (list)); } diff --git a/libempathy/empathy-tp-contact-list.h b/libempathy/empathy-tp-contact-list.h index c6cf6cb4a..0167b6a69 100644 --- a/libempathy/empathy-tp-contact-list.h +++ b/libempathy/empathy-tp-contact-list.h @@ -16,7 +16,7 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * + * * Authors: Xavier Claessens <xclaesse@gmail.com> */ |