diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:11:18 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:11:18 +0800 |
commit | fad1acc68b019748f3ab2663d02f8fb4e80dc0f6 (patch) | |
tree | cbb0a9e7722dcef5b2ba73ae2eb82247c96cdba5 /libempathy | |
parent | 26e383b12d5fa24d130d1ec1c1792d442a0ef975 (diff) | |
download | gsoc2013-empathy-fad1acc68b019748f3ab2663d02f8fb4e80dc0f6.tar gsoc2013-empathy-fad1acc68b019748f3ab2663d02f8fb4e80dc0f6.tar.gz gsoc2013-empathy-fad1acc68b019748f3ab2663d02f8fb4e80dc0f6.tar.bz2 gsoc2013-empathy-fad1acc68b019748f3ab2663d02f8fb4e80dc0f6.tar.lz gsoc2013-empathy-fad1acc68b019748f3ab2663d02f8fb4e80dc0f6.tar.xz gsoc2013-empathy-fad1acc68b019748f3ab2663d02f8fb4e80dc0f6.tar.zst gsoc2013-empathy-fad1acc68b019748f3ab2663d02f8fb4e80dc0f6.zip |
Fix a warning
svn path=/trunk/; revision=913
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-tp-contact-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-tp-contact-list.c b/libempathy/empathy-tp-contact-list.c index 8dbbc6100..8b5c5610f 100644 --- a/libempathy/empathy-tp-contact-list.c +++ b/libempathy/empathy-tp-contact-list.c @@ -662,7 +662,7 @@ tp_contact_list_constructed (GObject *list) if (ready) { tp_contact_list_ready_cb (EMPATHY_TP_CONTACT_LIST (list)); } else { - g_signal_connect_swapped (priv->connection, "connection-ready", + g_signal_connect_swapped (priv->connection, "notify::connection-ready", G_CALLBACK (tp_contact_list_ready_cb), list); } |