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


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

The following commit has been merged in the master branch:
commit f2d843baa417357cd860461b7192c0c5883ce630
Author: Daniele E. Domenichelli <daniele.domenichelli at gmail.com>
Date:   Thu Dec 29 18:20:41 2011 +0100

    Use Q_EMIT instead of emit
---
 sasl-auth-op.cpp         | 4 ++--
 tls-cert-verifier-op.cpp | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sasl-auth-op.cpp b/sasl-auth-op.cpp
index 01385d5..521108c 100644
--- a/sasl-auth-op.cpp
+++ b/sasl-auth-op.cpp
@@ -60,7 +60,7 @@ void SaslAuthOp::gotProperties(Tp::PendingOperation *op)
 
     if (mechanisms.contains(QLatin1String("X-TELEPATHY-PASSWORD"))) {
         // everything ok, we can return from handleChannels now
-        emit ready(this);
+        Q_EMIT ready(this);
         XTelepathyPasswordAuthOperation *authop = new XTelepathyPasswordAuthOperation(m_account, m_saslIface, qdbus_cast<bool>(props.value("CanTryAgain")));
         connect(authop,
                 SIGNAL(finished(Tp::PendingOperation*)),
@@ -71,7 +71,7 @@ void SaslAuthOp::gotProperties(Tp::PendingOperation *op)
         authop->onSASLStatusChanged(status, error, errorDetails);
     } else if (mechanisms.contains(QLatin1String("X-MESSENGER-OAUTH2"))) {
         // everything ok, we can return from handleChannels now
-        emit ready(this);
+        Q_EMIT ready(this);
         XMessengerOAuth2AuthOperation *authop = new XMessengerOAuth2AuthOperation(m_account, m_saslIface);
         connect(authop,
                 SIGNAL(finished(Tp::PendingOperation*)),
diff --git a/tls-cert-verifier-op.cpp b/tls-cert-verifier-op.cpp
index dbf28b5..5ffef3b 100644
--- a/tls-cert-verifier-op.cpp
+++ b/tls-cert-verifier-op.cpp
@@ -60,7 +60,7 @@ void TlsCertVerifierOp::gotProperties(Tp::PendingOperation *op)
     }
 
     // everything ok, we can return from handleChannels now
-    emit ready(this);
+    Q_EMIT ready(this);
 
     Tp::PendingVariantMap *pvm = qobject_cast<Tp::PendingVariantMap*>(op);
     QVariantMap props = qdbus_cast<QVariantMap>(pvm->result());

-- 
ktp-auth-handler packaging



More information about the pkg-kde-commits mailing list