Skip to content

Commit

Permalink
Implement BaseChannelConferenceInterface::immutableProperties()
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaffeine committed Nov 8, 2019
1 parent 0d8a588 commit eb50fad
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions TelepathyQt/base-channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit eb50fad

Please sign in to comment.