diff options
author | George Kiagiadakis <george.kiagiadakis@collabora.com> | 2012-07-02 18:40:08 +0300 |
---|---|---|
committer | Dario Freddi <dario.freddi@collabora.com> | 2012-07-03 11:11:24 +0200 |
commit | 12867e6834d5945d9c02293388c679ca5416d83f (patch) | |
tree | e62113165787d3d53202c0ce669f348fc1d468cc | |
parent | 5b4bf9e16c29e998930b0b3d870c797b16f7a92a (diff) |
dbus-tubes: Make DBusTubeChannel::setAddress() private
-rw-r--r-- | TelepathyQt/dbus-tube-channel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TelepathyQt/dbus-tube-channel.h b/TelepathyQt/dbus-tube-channel.h index bb32a888..f96735a9 100644 --- a/TelepathyQt/dbus-tube-channel.h +++ b/TelepathyQt/dbus-tube-channel.h @@ -58,8 +58,6 @@ protected: DBusTubeChannel(const ConnectionPtr &connection, const QString &objectPath, const QVariantMap &immutableProperties); - void setAddress(const QString &address); - Q_SIGNALS: void busNameAdded(const QString &busName, const Tp::ContactPtr &contact); void busNameRemoved(const QString &busName, const Tp::ContactPtr &contact); @@ -72,6 +70,8 @@ private Q_SLOTS: TP_QT_NO_EXPORT void onQueueCompleted(); private: + TP_QT_NO_EXPORT void setAddress(const QString &address); + struct Private; friend struct PendingDBusTubeConnection; friend struct Private; |