Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
pvuorela committed May 3, 2021
1 parent 268398b commit 7e00f4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/textchannellistener.cpp
Expand Up @@ -1824,15 +1824,15 @@ void TextChannelListener::slotPropertiesChanged(const Tp::PropertyValueList &pro
}
void TextChannelListener::slotRequestAllRoomProperies(Tp::PendingOperation *operation)
{
DEBUG() << __FUNCTION__;
qCDebug(lcCommhistoryd) << __FUNCTION__;

QVariantMap properties = dynamic_cast<Tp::PendingVariantMap*>( operation )->result();
processRoomProperties(properties);
}

void TextChannelListener::slotRequestPropertyRoomName(Tp::PendingOperation *operation)
{
DEBUG() << __FUNCTION__;
qCDebug(lcCommhistoryd) << __FUNCTION__;

QString name = dynamic_cast<Tp::PendingVariant*>( operation )->result().toString();

Expand All @@ -1848,7 +1848,7 @@ void TextChannelListener::slotRequestPropertyRoomName(Tp::PendingOperation *oper

void TextChannelListener::slotRoomPropertiesChanged(const QVariantMap &changedProperties, const QStringList &invalidatedProperties)
{
DEBUG() << __FUNCTION__;
qCDebug(lcCommhistoryd) << __FUNCTION__;
processRoomProperties(changedProperties);
}

Expand Down

0 comments on commit 7e00f4a

Please sign in to comment.