]> git.0d.be Git - empathy.git/commitdiff
UOA: Fix build failure
authorTim Lunn <tim@feathertop.org>
Tue, 3 Sep 2013 01:39:46 +0000 (11:39 +1000)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Tue, 3 Sep 2013 12:18:25 +0000 (14:18 +0200)
This was a regression caused by c689cd6a91cb2a31ce0d03f47e59ca4e3f368e9c

https://bugzilla.gnome.org/show_bug.cgi?id=707338

libempathy/empathy-uoa-auth-handler.c
src/empathy-sanity-cleaning.c

index d5a6577c29410032a8edcc9aecc0698c0e7fabc7..5048013e119145c81d826dd43815ee2d0c80982a 100644 (file)
@@ -340,7 +340,7 @@ empathy_uoa_auth_handler_start (EmpathyUoaAuthHandler *self,
 
   account = ag_manager_get_account (self->priv->manager, id);
   if (account != NULL)
-    l = ag_account_list_services_by_type (account, EMPATHY_UOA_SERVICE_TYPE);
+    l = ag_account_list_services_by_type (account, TPAW_UOA_SERVICE_TYPE);
   if (l == NULL)
     {
       DEBUG ("Couldn't find IM service for AgAccountId %u", id);
index 6ad0990aa6cd84047947c5b4b934393e4d965624..e43c1554a9d915d6c7bb95647825b25f2dcfa997 100644 (file)
@@ -29,9 +29,9 @@
 #include <libaccounts-glib/ag-manager.h>
 #include <libaccounts-glib/ag-service.h>
 #include <tp-account-widgets/tpaw-keyring.h>
+#include <tp-account-widgets/tpaw-uoa-utils.h>
 
 #include "empathy-pkg-kit.h"
-#include "empathy-uoa-utils.h"
 #endif
 
 #include "empathy-gsettings.h"
@@ -501,7 +501,7 @@ uoa_plugin_installed (AgManager *manager,
   protocol = tp_account_get_protocol_name (account);
   ag_account = ag_manager_create_account (manager, protocol);
 
-  l = ag_account_list_services_by_type (ag_account, EMPATHY_UOA_SERVICE_TYPE);
+  l = ag_account_list_services_by_type (ag_account, TPAW_UOA_SERVICE_TYPE);
   if (l == NULL)
     {
       const gchar *packages[2];