telepathy-qt: BaseConnection::Adaptee: Members are now private.

Alexandr Akulich kaffeine at kemper.freedesktop.org
Wed May 6 01:10:28 PDT 2015


Module: telepathy-qt
Branch: master
Commit: 1a2e1d9780b596ba260fac49846851698a76a90a
URL:    http://cgit.freedesktop.org/telepathy/telepathy-qt/commit/?id=1a2e1d9780b596ba260fac49846851698a76a90a

Author: Alexandr Akulich <akulichalexander at gmail.com>
Date:   Tue Apr 21 13:09:39 2015 +0500

BaseConnection::Adaptee: Members are now private.

They are never used from outside.

Reviewed-by: David Edmundson

---

 TelepathyQt/base-connection-internal.h |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/TelepathyQt/base-connection-internal.h b/TelepathyQt/base-connection-internal.h
index f8e109c..d13fa29 100644
--- a/TelepathyQt/base-connection-internal.h
+++ b/TelepathyQt/base-connection-internal.h
@@ -77,15 +77,15 @@ private Q_SLOTS:
     //void addClientInterest(const QStringList &tokens, const Tp::Service::ConnectionAdaptor::AddClientInterestContextPtr &context);
     //void removeClientInterest(const QStringList &tokens, const Tp::Service::ConnectionAdaptor::RemoveClientInterestContextPtr &context);
 
-public:
-    BaseConnection *mConnection;
-    Service::ConnectionAdaptor *mAdaptor;
-
 Q_SIGNALS:
     void selfHandleChanged(uint selfHandle);
     void newChannel(const QDBusObjectPath &objectPath, const QString &channelType, uint handleType, uint handle, bool suppressHandler);
     void connectionError(const QString &error, const QVariantMap &details);
     void statusChanged(uint status, uint reason);
+
+private:
+    BaseConnection *mConnection;
+    Service::ConnectionAdaptor *mAdaptor;
 };
 
 class TP_QT_NO_EXPORT BaseConnectionRequestsInterface::Adaptee : public QObject



More information about the telepathy-commits mailing list