aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-tp-contact-list.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-10-22 17:43:13 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2009-10-22 17:43:51 +0800
commit6e414d115637bf307d16140ca3eff8c473d4e5a6 (patch)
tree526a93d7c08ebd0b36c393e83dec33b08071d4cd /libempathy/empathy-tp-contact-list.c
parenta691a12763667768333cbdd30be75a2b09f69266 (diff)
downloadgsoc2013-empathy-6e414d115637bf307d16140ca3eff8c473d4e5a6.tar
gsoc2013-empathy-6e414d115637bf307d16140ca3eff8c473d4e5a6.tar.gz
gsoc2013-empathy-6e414d115637bf307d16140ca3eff8c473d4e5a6.tar.bz2
gsoc2013-empathy-6e414d115637bf307d16140ca3eff8c473d4e5a6.tar.lz
gsoc2013-empathy-6e414d115637bf307d16140ca3eff8c473d4e5a6.tar.xz
gsoc2013-empathy-6e414d115637bf307d16140ca3eff8c473d4e5a6.tar.zst
gsoc2013-empathy-6e414d115637bf307d16140ca3eff8c473d4e5a6.zip
empathy-tp-contact-list.c: fix shadow declaration and uint comparaison
Diffstat (limited to 'libempathy/empathy-tp-contact-list.c')
-rw-r--r--libempathy/empathy-tp-contact-list.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c
index 2bf2ec416..3e1015d0c 100644
--- a/libempathy/empathy-tp-contact-list.c
+++ b/libempathy/empathy-tp-contact-list.c
@@ -188,7 +188,7 @@ tp_contact_list_group_members_changed_cb (TpChannel *channel,
{
EmpathyTpContactListPriv *priv = GET_PRIV (list);
const gchar *group_name;
- gint i;
+ guint i;
group_name = tp_channel_get_identifier (channel);
@@ -430,12 +430,12 @@ tp_contact_list_remove_handle (EmpathyTpContactList *list,
{
EmpathyTpContactListPriv *priv = GET_PRIV (list);
EmpathyContact *contact;
- const gchar *signal;
+ const gchar *sig;
if (table == priv->pendings)
- signal = "pendings-changed";
+ sig = "pendings-changed";
else if (table == priv->members)
- signal = "members-changed";
+ sig = "members-changed";
else
return;
@@ -443,7 +443,7 @@ tp_contact_list_remove_handle (EmpathyTpContactList *list,
if (contact) {
g_object_ref (contact);
g_hash_table_remove (table, GUINT_TO_POINTER (handle));
- g_signal_emit_by_name (list, signal, contact, 0, 0, NULL,
+ g_signal_emit_by_name (list, sig, contact, 0, 0, NULL,
FALSE);
g_object_unref (contact);
}
@@ -539,7 +539,7 @@ tp_contact_list_get_requestablechannelclasses_cb (TpProxy *connection,
{
EmpathyTpContactListPriv *priv = GET_PRIV (list);
GPtrArray *classes;
- int i;
+ guint i;
if (error) {
DEBUG ("Error: %s", error->message);