summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Zabaluev <mikhail.zabaluev@nokia.com>2011-05-26 18:49:37 +0300
committerMikhail Zabaluev <mikhail.zabaluev@nokia.com>2011-05-30 16:25:29 +0300
commitd960b6a266e60e19480bb9f192448f05d8463463 (patch)
tree9a9ac30efe7b4776aa07dce033283905c3f7597b
parent409ba314750ff236b1cac4f000846046d66b6305 (diff)
Use module-correct APIs to get the GSource from the sofia rootHEADmaster
-rw-r--r--src/sip-connection-manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sip-connection-manager.c b/src/sip-connection-manager.c
index 61a3511..e64cf56 100644
--- a/src/sip-connection-manager.c
+++ b/src/sip-connection-manager.c
@@ -68,7 +68,7 @@ rakia_connection_manager_init (RakiaConnectionManager *obj)
priv->sofia_root = su_glib_root_create(obj);
su_root_threading(priv->sofia_root, 0);
- source = su_root_gsource(priv->sofia_root);
+ source = su_glib_root_gsource(priv->sofia_root);
g_source_attach(source, NULL);
priv->debug_sender = tp_debug_sender_dup ();
@@ -120,7 +120,7 @@ rakia_connection_manager_finalize (GObject *object)
RakiaConnectionManagerPrivate *priv = TPSIP_CONNECTION_MANAGER_GET_PRIVATE (self);
GSource *source;
- source = su_root_gsource(priv->sofia_root);
+ source = su_glib_root_gsource(priv->sofia_root);
g_source_destroy(source);
su_root_destroy(priv->sofia_root);