[SCM] ktp-auth-handler packaging branch, master, updated. debian/15.12.1-2-282-g080758e

Maximiliano Curia maxy at moszumanska.debian.org
Fri May 27 23:59:21 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-auth-handler.git;a=commitdiff;h=1ecdfd0

The following commit has been merged in the master branch:
commit 1ecdfd03938a96a39bcba564c5b3b20773f615c0
Author: Àlex Fiestas <afiestas at kde.org>
Date:   Mon Jun 10 17:50:34 2013 +0200

    Rename Facebook class as well (*SSOFacebookOperation)
---
 sasl-auth-op.cpp                       | 2 +-
 x-telepathy-sso-facebook-operation.cpp | 8 ++++----
 x-telepathy-sso-facebook-operation.h   | 6 +++---
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/sasl-auth-op.cpp b/sasl-auth-op.cpp
index edcf695..adc2023 100644
--- a/sasl-auth-op.cpp
+++ b/sasl-auth-op.cpp
@@ -78,7 +78,7 @@ void SaslAuthOp::gotProperties(Tp::PendingOperation *op)
 
 #ifdef HAVE_SSO
     if (mechanisms.contains(QLatin1String("X-FACEBOOK-PLATFORM")) && m_accountStorageId) {
-        XTelepathySSOOperation *authop = new XTelepathySSOOperation(m_account, m_accountStorageId, m_saslIface);
+        XTelepathySSOFacebookOperation *authop = new XTelepathySSOFacebookOperation(m_account, m_accountStorageId, m_saslIface);
         connect(authop,
                 SIGNAL(finished(Tp::PendingOperation*)),
                 SLOT(onAuthOperationFinished(Tp::PendingOperation*)));
diff --git a/x-telepathy-sso-facebook-operation.cpp b/x-telepathy-sso-facebook-operation.cpp
index 4f80276..69d8786 100644
--- a/x-telepathy-sso-facebook-operation.cpp
+++ b/x-telepathy-sso-facebook-operation.cpp
@@ -31,7 +31,7 @@
 
 #include "getcredentialsjob.h"
 
-XTelepathySSOOperation::XTelepathySSOOperation(const Tp::AccountPtr& account, int accountStorageId, Tp::Client::ChannelInterfaceSASLAuthenticationInterface* saslIface) :
+XTelepathySSOFacebookOperation::XTelepathySSOFacebookOperation(const Tp::AccountPtr& account, int accountStorageId, Tp::Client::ChannelInterfaceSASLAuthenticationInterface* saslIface) :
     PendingOperation(account),
     m_account(account),
     m_saslIface(saslIface),
@@ -43,7 +43,7 @@ XTelepathySSOOperation::XTelepathySSOOperation(const Tp::AccountPtr& account, in
 }
 
 
-void XTelepathySSOOperation::onSASLStatusChanged(uint status, const QString &reason, const QVariantMap &details)
+void XTelepathySSOFacebookOperation::onSASLStatusChanged(uint status, const QString &reason, const QVariantMap &details)
 {
     kDebug() << "New status is: " << status;
     kDebug() << "Details: " << details;
@@ -63,7 +63,7 @@ void XTelepathySSOOperation::onSASLStatusChanged(uint status, const QString &rea
     }
 }
 
-void XTelepathySSOOperation::onNewChallenge(const QByteArray& challengeData)
+void XTelepathySSOFacebookOperation::onNewChallenge(const QByteArray& challengeData)
 {
     kDebug() << "New Challenge" << challengeData;
 
@@ -75,7 +75,7 @@ void XTelepathySSOOperation::onNewChallenge(const QByteArray& challengeData)
     job->start();
 }
 
-void XTelepathySSOOperation::gotCredentials(KJob *kJob)
+void XTelepathySSOFacebookOperation::gotCredentials(KJob *kJob)
 {
     kDebug();
     KUrl fbRequestUrl;
diff --git a/x-telepathy-sso-facebook-operation.h b/x-telepathy-sso-facebook-operation.h
index a19430b..921ef2a 100644
--- a/x-telepathy-sso-facebook-operation.h
+++ b/x-telepathy-sso-facebook-operation.h
@@ -27,13 +27,13 @@
 
 class KJob;
 
-class XTelepathySSOOperation : public Tp::PendingOperation
+class XTelepathySSOFacebookOperation : public Tp::PendingOperation
 {
     Q_OBJECT
-    Q_DISABLE_COPY(XTelepathySSOOperation)
+    Q_DISABLE_COPY(XTelepathySSOFacebookOperation)
 
 public:
-    explicit XTelepathySSOOperation(
+    explicit XTelepathySSOFacebookOperation(
             const Tp::AccountPtr &account,
             int accountStorageId,
             Tp::Client::ChannelInterfaceSASLAuthenticationInterface *saslIface);

-- 
ktp-auth-handler packaging



More information about the pkg-kde-commits mailing list