diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-22 20:40:42 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-22 20:40:42 +0800 |
commit | 6ba051c2deb8c8b5f1148ac2173f6901d50d1a89 (patch) | |
tree | d2f0abdfd70e465d7f256cfbb60014f61a085526 /libempathy | |
parent | 07961d71bdc15756e355c701a02856dbcd801bdd (diff) | |
download | gsoc2013-empathy-6ba051c2deb8c8b5f1148ac2173f6901d50d1a89.tar gsoc2013-empathy-6ba051c2deb8c8b5f1148ac2173f6901d50d1a89.tar.gz gsoc2013-empathy-6ba051c2deb8c8b5f1148ac2173f6901d50d1a89.tar.bz2 gsoc2013-empathy-6ba051c2deb8c8b5f1148ac2173f6901d50d1a89.tar.lz gsoc2013-empathy-6ba051c2deb8c8b5f1148ac2173f6901d50d1a89.tar.xz gsoc2013-empathy-6ba051c2deb8c8b5f1148ac2173f6901d50d1a89.tar.zst gsoc2013-empathy-6ba051c2deb8c8b5f1148ac2173f6901d50d1a89.zip |
notify_ready_cb: use g_simple_async_result_complete instead of _in_idle
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-connection-managers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-connection-managers.c b/libempathy/empathy-connection-managers.c index 9cda1a331..30a9b8471 100644 --- a/libempathy/empathy-connection-managers.c +++ b/libempathy/empathy-connection-managers.c @@ -297,7 +297,7 @@ notify_ready_cb (EmpathyConnectionManagers *self, GParamSpec *spec, GSimpleAsyncResult *result) { - g_simple_async_result_complete_in_idle (result); + g_simple_async_result_complete (result); g_object_unref (result); } |