diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-11 20:22:47 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-03-11 20:22:47 +0800 |
commit | 7cb2a8aebca7cd898f2012b6c9eb0aa6bf0d18df (patch) | |
tree | ee0967bb700cabc3155f141ad6b803f8f614332d /libempathy/empathy-contact.c | |
parent | a9628f1d341fdc93b541b4f99014bdfc26311ef2 (diff) | |
download | gsoc2013-empathy-7cb2a8aebca7cd898f2012b6c9eb0aa6bf0d18df.tar gsoc2013-empathy-7cb2a8aebca7cd898f2012b6c9eb0aa6bf0d18df.tar.gz gsoc2013-empathy-7cb2a8aebca7cd898f2012b6c9eb0aa6bf0d18df.tar.bz2 gsoc2013-empathy-7cb2a8aebca7cd898f2012b6c9eb0aa6bf0d18df.tar.lz gsoc2013-empathy-7cb2a8aebca7cd898f2012b6c9eb0aa6bf0d18df.tar.xz gsoc2013-empathy-7cb2a8aebca7cd898f2012b6c9eb0aa6bf0d18df.tar.zst gsoc2013-empathy-7cb2a8aebca7cd898f2012b6c9eb0aa6bf0d18df.zip |
Improve a bit the test and fix empathy_contact_run_until, data.ready was not set.
svn path=/trunk/; revision=760
Diffstat (limited to 'libempathy/empathy-contact.c')
-rw-r--r-- | libempathy/empathy-contact.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 1e4aca651..893fabb5a 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -760,7 +760,7 @@ contact_ready_notify_cb (EmpathyContact *contact, EmpathyContactPriv *priv = GET_PRIV (contact); if ((priv->ready & data->ready) == data->ready) { - empathy_debug (DEBUG_DOMAIN, "contact %s (%d) ready %d!", + empathy_debug (DEBUG_DOMAIN, "contact %s (%d) ready %d", priv->id, priv->handle, priv->ready); g_main_loop_quit (data->loop); } @@ -784,6 +784,7 @@ empathy_contact_run_until_ready (EmpathyContact *contact, empathy_debug (DEBUG_DOMAIN, "Run until ready=%d for contact %s (%d)", ready, priv->id, priv->handle); + data.ready = ready; data.loop = g_main_loop_new (NULL, FALSE); signal_id = g_signal_connect (contact, "notify::ready", |