[empathy: 60/65] Use _complete instead of _complete_in_idle()



commit 4472cbd53db695b41146ec4c9345ee4ab3197b04
Author: Cosimo Cecchi <cosimoc gnome org>
Date:   Wed Aug 18 19:28:25 2010 +0200

    Use _complete instead of _complete_in_idle()

 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 bed0132..a03fa80 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);
 }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]