From 76965a11aa4d230ae8636c67e0e6f9ce20f5ec5c Mon Sep 17 00:00:00 2001 From: Melvin Keskin Date: Mon, 7 Mar 2022 14:57:42 +0100 Subject: TrustMemoryStorage: Remove 'const' qualifiers from method parameters --- src/client/QXmppTrustMemoryStorage.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/client') 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>> keys(const QString &encryption, const QList &keyOwnerJids, TrustLevels trustLevels = {}) override; QFuture hasKey(const QString &encryption, const QString &keyOwnerJid, TrustLevels trustLevels) override; - QFuture setTrustLevel(const QString &encryption, const QMultiHash &keyIds, const TrustLevel trustLevel) override; - QFuture setTrustLevel(const QString &encryption, const QList &keyOwnerJids, const TrustLevel oldTrustLevel, const TrustLevel newTrustLevel) override; + QFuture setTrustLevel(const QString &encryption, const QMultiHash &keyIds, TrustLevel trustLevel) override; + QFuture setTrustLevel(const QString &encryption, const QList &keyOwnerJids, TrustLevel oldTrustLevel, TrustLevel newTrustLevel) override; QFuture trustLevel(const QString &encryption, const QByteArray &keyId) override; QFuture resetAll(const QString &encryption) override; -- cgit v1.2.3