diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2010-08-19 01:28:25 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2010-08-19 01:28:25 +0800 |
commit | 4472cbd53db695b41146ec4c9345ee4ab3197b04 (patch) | |
tree | 733ebd5f72cc1400424c5b80bc30424e2c637d19 | |
parent | ea19d00b74b36acc40115a3b48218ccc6af54d04 (diff) | |
download | gsoc2013-empathy-4472cbd53db695b41146ec4c9345ee4ab3197b04.tar gsoc2013-empathy-4472cbd53db695b41146ec4c9345ee4ab3197b04.tar.gz gsoc2013-empathy-4472cbd53db695b41146ec4c9345ee4ab3197b04.tar.bz2 gsoc2013-empathy-4472cbd53db695b41146ec4c9345ee4ab3197b04.tar.lz gsoc2013-empathy-4472cbd53db695b41146ec4c9345ee4ab3197b04.tar.xz gsoc2013-empathy-4472cbd53db695b41146ec4c9345ee4ab3197b04.tar.zst gsoc2013-empathy-4472cbd53db695b41146ec4c9345ee4ab3197b04.zip |
Use _complete instead of _complete_in_idle()
-rw-r--r-- | libempathy/empathy-tls-certificate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-tls-certificate.c b/libempathy/empathy-tls-certificate.c index bed01327c..a03fa809f 100644 --- a/libempathy/empathy-tls-certificate.c +++ b/libempathy/empathy-tls-certificate.c @@ -114,7 +114,7 @@ tls_certificate_got_all_cb (TpProxy *proxy, if (error != NULL) { g_simple_async_result_set_from_error (priv->async_init_res, error); - g_simple_async_result_complete_in_idle (priv->async_init_res); + g_simple_async_result_complete (priv->async_init_res); g_object_unref (priv->async_init_res); @@ -133,7 +133,7 @@ tls_certificate_got_all_cb (TpProxy *proxy, DEBUG ("Got a certificate chain long %u, of type %s", priv->cert_data->len, priv->cert_type); - g_simple_async_result_complete_in_idle (priv->async_init_res); + g_simple_async_result_complete (priv->async_init_res); g_object_unref (priv->async_init_res); } |