diff options
author | Chandni Verma <chandniverma2112@gmail.com> | 2013-09-12 02:33:45 +0800 |
---|---|---|
committer | Chandni Verma <chandniverma2112@gmail.com> | 2013-09-12 02:44:35 +0800 |
commit | 994efa439ede5106f0f0f903400bcc0291f94018 (patch) | |
tree | 1d1315d73cc2f7ad89006d72e0fd256f1c60ac56 | |
parent | 3f134034c3024e9d07da80f8b1866ae4bb52c1cc (diff) | |
download | gsoc2013-empathy-994efa439ede5106f0f0f903400bcc0291f94018.tar gsoc2013-empathy-994efa439ede5106f0f0f903400bcc0291f94018.tar.gz gsoc2013-empathy-994efa439ede5106f0f0f903400bcc0291f94018.tar.bz2 gsoc2013-empathy-994efa439ede5106f0f0f903400bcc0291f94018.tar.lz gsoc2013-empathy-994efa439ede5106f0f0f903400bcc0291f94018.tar.xz gsoc2013-empathy-994efa439ede5106f0f0f903400bcc0291f94018.tar.zst gsoc2013-empathy-994efa439ede5106f0f0f903400bcc0291f94018.zip |
Use tpaw_uoa_manager_dup instead of empathy_uoa_manager_dup
-rw-r--r-- | libempathy/empathy-uoa-auth-handler.c | 2 | ||||
-rw-r--r-- | src/empathy-sanity-cleaning.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-uoa-auth-handler.c b/libempathy/empathy-uoa-auth-handler.c index 5048013e1..ae7ad3481 100644 --- a/libempathy/empathy-uoa-auth-handler.c +++ b/libempathy/empathy-uoa-auth-handler.c @@ -52,7 +52,7 @@ empathy_uoa_auth_handler_init (EmpathyUoaAuthHandler *self) self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, EMPATHY_TYPE_UOA_AUTH_HANDLER, EmpathyUoaAuthHandlerPriv); - self->priv->manager = empathy_uoa_manager_dup (); + self->priv->manager = tpaw_uoa_manager_dup (); } static void diff --git a/src/empathy-sanity-cleaning.c b/src/empathy-sanity-cleaning.c index e43c1554a..a1a097db4 100644 --- a/src/empathy-sanity-cleaning.c +++ b/src/empathy-sanity-cleaning.c @@ -536,7 +536,7 @@ migrate_accounts_to_uoa (SanityCtx *ctx) DEBUG ("Start migrating accounts to UOA"); - manager = empathy_uoa_manager_dup (); + manager = tpaw_uoa_manager_dup (); accounts = tp_account_manager_dup_valid_accounts (ctx->am); for (l = accounts; l != NULL; l = g_list_next (l)) |