aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppTrustManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/QXmppTrustManager.cpp')
-rw-r--r--src/client/QXmppTrustManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/QXmppTrustManager.cpp b/src/client/QXmppTrustManager.cpp
index 2a5a591b..a5031a52 100644
--- a/src/client/QXmppTrustManager.cpp
+++ b/src/client/QXmppTrustManager.cpp
@@ -212,7 +212,7 @@ QFuture<void> QXmppTrustManager::setTrustLevel(const QString &encryption, const
auto future = m_trustStorage->setTrustLevel(encryption, keyIds, trustLevel);
await(future, this, [=](QHash<QString, QMultiHash<QString, QByteArray>> modifiedKeys) mutable {
- emit trustLevelsChanged(modifiedKeys);
+ Q_EMIT trustLevelsChanged(modifiedKeys);
interface.reportFinished();
});
@@ -233,7 +233,7 @@ QFuture<void> QXmppTrustManager::setTrustLevel(const QString &encryption, const
auto future = m_trustStorage->setTrustLevel(encryption, keyOwnerJids, oldTrustLevel, newTrustLevel);
await(future, this, [=](QHash<QString, QMultiHash<QString, QByteArray>> modifiedKeys) mutable {
- emit trustLevelsChanged(modifiedKeys);
+ Q_EMIT trustLevelsChanged(modifiedKeys);
interface.reportFinished();
});