telepathy-qt: Implement BaseChannelConferenceInterface::immutableProperties()
Alexandr Akulich
kaffeine at kemper.freedesktop.org
Mon Nov 11 17:28:15 UTC 2019
Module: telepathy-qt
Branch: master
Commit: eb50fad5e1fc7442509064438d26e4fb02e0175e
URL: http://cgit.freedesktop.org/telepathy/telepathy-qt/commit/?id=eb50fad5e1fc7442509064438d26e4fb02e0175e
Author: Alexander Akulich <akulichalexander at gmail.com>
Date: Sat Nov 9 01:08:43 2019 +0300
Implement BaseChannelConferenceInterface::immutableProperties()
---
TelepathyQt/base-channel.cpp | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/TelepathyQt/base-channel.cpp b/TelepathyQt/base-channel.cpp
index 984d8928..ea8460aa 100644
--- a/TelepathyQt/base-channel.cpp
+++ b/TelepathyQt/base-channel.cpp
@@ -4473,6 +4473,14 @@ BaseChannelConferenceInterface::~BaseChannelConferenceInterface()
QVariantMap BaseChannelConferenceInterface::immutableProperties() const
{
QVariantMap map;
+ map.insert(TP_QT_IFACE_CHANNEL_INTERFACE_CONFERENCE + QLatin1String(".InitialChannels"),
+ QVariant::fromValue(initialChannels()));
+ map.insert(TP_QT_IFACE_CHANNEL_INTERFACE_CONFERENCE + QLatin1String(".InitialInviteeHandles"),
+ QVariant::fromValue(initialInviteeHandles()));
+ map.insert(TP_QT_IFACE_CHANNEL_INTERFACE_CONFERENCE + QLatin1String(".InitialInviteeIDs"),
+ QVariant::fromValue(initialInviteeIDs()));
+ map.insert(TP_QT_IFACE_CHANNEL_INTERFACE_CONFERENCE + QLatin1String(".InvitationMessage"),
+ QVariant::fromValue(invitationMessage()));
return map;
}
More information about the telepathy-commits
mailing list