[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:14 UTC 2016


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

The following commit has been merged in the master branch:
commit f6986ea229eaba96c219d1a6c4cc58d648fddc78
Author: Àlex Fiestas <afiestas at kde.org>
Date:   Fri Jun 7 17:53:47 2013 +0200

    Fixed ordening warnings and improved KDebug
---
 x-telepathy-sso-operation.cpp | 15 ++++++++-------
 x-telepathy-sso-operation.h   |  3 +--
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/x-telepathy-sso-operation.cpp b/x-telepathy-sso-operation.cpp
index 822b1f0..d1f750c 100644
--- a/x-telepathy-sso-operation.cpp
+++ b/x-telepathy-sso-operation.cpp
@@ -34,8 +34,8 @@
 XTelepathySSOOperation::XTelepathySSOOperation(const Tp::AccountPtr& account, int accountStorageId, Tp::Client::ChannelInterfaceSASLAuthenticationInterface* saslIface) :
     PendingOperation(account),
     m_account(account),
-    m_accountStorageId(accountStorageId),
-    m_saslIface(saslIface)
+    m_saslIface(saslIface),
+    m_accountStorageId(accountStorageId)
 {
     Q_ASSERT(m_accountStorageId);
     connect(m_saslIface, SIGNAL(SASLStatusChanged(uint,QString,QVariantMap)), SLOT(onSASLStatusChanged(uint,QString,QVariantMap)));
@@ -45,8 +45,10 @@ XTelepathySSOOperation::XTelepathySSOOperation(const Tp::AccountPtr& account, in
 
 void XTelepathySSOOperation::onSASLStatusChanged(uint status, const QString &reason, const QVariantMap &details)
 {
-    kDebug() << "new status is " << status;
-    kDebug() << "details" << details;
+    kDebug() << "New status is: " << status;
+    kDebug() << "Details: " << details;
+    kDebug() << "Reason: " << reason;
+
     switch (status){
     case Tp::SASLStatusNotStarted:
     {
@@ -63,12 +65,11 @@ void XTelepathySSOOperation::onSASLStatusChanged(uint status, const QString &rea
 
 void XTelepathySSOOperation::onNewChallenge(const QByteArray& challengeData)
 {
-    kDebug() << "new challenge" << challengeData;
-    kDebug() << "responding again";
+    kDebug() << "New Challenge" << challengeData;
 
     m_challengeData = challengeData;
 
-    kDebug() << "made new credentials job..starting: " << m_accountStorageId;
+    kDebug() << "GetCredentialsJob on account: " << m_accountStorageId;
     GetCredentialsJob *job = new GetCredentialsJob(m_accountStorageId, this);
     connect(job, SIGNAL(finished(KJob*)), SLOT(gotCredentials(KJob *)));
     job->start();
diff --git a/x-telepathy-sso-operation.h b/x-telepathy-sso-operation.h
index 1cf272c..ac70d0e 100644
--- a/x-telepathy-sso-operation.h
+++ b/x-telepathy-sso-operation.h
@@ -47,9 +47,8 @@ private:
     Tp::AccountPtr m_account;
     Tp::Client::ChannelInterfaceSASLAuthenticationInterface *m_saslIface;
 
-    QByteArray m_challengeData;
     int m_accountStorageId;
-
+    QByteArray m_challengeData;
 
     friend class SaslAuthOp;
 };

-- 
ktp-auth-handler packaging



More information about the pkg-kde-commits mailing list