summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-10-05 10:25:36 -0300
committerAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-10-05 10:25:48 -0300
commit9bc67a5ff6a3d161b67a59b0c2703e67d171cbde (patch)
tree9f1dcdc39bb4aa2c4485bdcf4bfbe88aa5f25793
parent66bac6ce5c69c985ecb98d614772c758bddaba66 (diff)
parent5a0776c96689837b0e0f4e1f0c1aea3df56e6829 (diff)
Merge branch 'stube-channel-api-break-fix-0.6' into telepathy-qt4-0.6
Reviewed-by: Olli Salli (oggis) <olli.salli@collabora.co.uk>
-rw-r--r--TelepathyQt4/stream-tube-channel.cpp9
-rw-r--r--TelepathyQt4/stream-tube-channel.h1
2 files changed, 10 insertions, 0 deletions
diff --git a/TelepathyQt4/stream-tube-channel.cpp b/TelepathyQt4/stream-tube-channel.cpp
index 2c71bb39..4f8fcf74 100644
--- a/TelepathyQt4/stream-tube-channel.cpp
+++ b/TelepathyQt4/stream-tube-channel.cpp
@@ -616,6 +616,15 @@ QString StreamTubeChannel::localAddress() const
return mPriv->unixAddress;
}
+/**
+ * This method never did anything useful when called from outside, and now does nothing at all. It
+ * will be removed in the next API/ABI break.
+ */
+void StreamTubeChannel::setBaseTubeType(uint type)
+{
+ Q_UNUSED(type);
+}
+
void StreamTubeChannel::setConnections(UIntList connections)
{
mPriv->connections = connections;
diff --git a/TelepathyQt4/stream-tube-channel.h b/TelepathyQt4/stream-tube-channel.h
index 42ba7798..eb3512f4 100644
--- a/TelepathyQt4/stream-tube-channel.h
+++ b/TelepathyQt4/stream-tube-channel.h
@@ -80,6 +80,7 @@ protected:
const QVariantMap &immutableProperties,
const Feature &coreFeature = StreamTubeChannel::FeatureCore);
+ void setBaseTubeType(uint type);
void setConnections(UIntList connections);
void setAddressType(SocketAddressType type);
SocketAccessControl accessControl() const;