aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorMelvin Keskin <melvo@olomono.de>2022-03-07 14:57:42 +0100
committerLinus Jahn <lnj@kaidan.im>2022-03-07 20:19:29 +0100
commit76965a11aa4d230ae8636c67e0e6f9ce20f5ec5c (patch)
treea55c3f54184db9bb1d45769db037b02b83094801 /src/client
parent69fc1573b06d28f2d09347a4f87e6ac6c47e1769 (diff)
downloadqxmpp-76965a11aa4d230ae8636c67e0e6f9ce20f5ec5c.tar.gz
TrustMemoryStorage: Remove 'const' qualifiers from method parameters
Diffstat (limited to 'src/client')
-rw-r--r--src/client/QXmppTrustMemoryStorage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/QXmppTrustMemoryStorage.h b/src/client/QXmppTrustMemoryStorage.h
index 08696039..abab2d6a 100644
--- a/src/client/QXmppTrustMemoryStorage.h
+++ b/src/client/QXmppTrustMemoryStorage.h
@@ -34,8 +34,8 @@ public:
QFuture<QHash<QString, QHash<QByteArray, TrustLevel>>> keys(const QString &encryption, const QList<QString> &keyOwnerJids, TrustLevels trustLevels = {}) override;
QFuture<bool> hasKey(const QString &encryption, const QString &keyOwnerJid, TrustLevels trustLevels) override;
- QFuture<void> setTrustLevel(const QString &encryption, const QMultiHash<QString, QByteArray> &keyIds, const TrustLevel trustLevel) override;
- QFuture<void> setTrustLevel(const QString &encryption, const QList<QString> &keyOwnerJids, const TrustLevel oldTrustLevel, const TrustLevel newTrustLevel) override;
+ QFuture<void> setTrustLevel(const QString &encryption, const QMultiHash<QString, QByteArray> &keyIds, TrustLevel trustLevel) override;
+ QFuture<void> setTrustLevel(const QString &encryption, const QList<QString> &keyOwnerJids, TrustLevel oldTrustLevel, TrustLevel newTrustLevel) override;
QFuture<TrustLevel> trustLevel(const QString &encryption, const QByteArray &keyId) override;
QFuture<void> resetAll(const QString &encryption) override;