aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppTrustStorage.h
diff options
context:
space:
mode:
authorMelvin Keskin <melvo@olomono.de>2022-03-07 14:58:29 +0100
committerLinus Jahn <lnj@kaidan.im>2022-03-07 20:19:29 +0100
commitebbf58a05ca112b7e56df8aa072f410398a86dae (patch)
tree414f3459888096124d4b3a1846c355ce2d0f290d /src/client/QXmppTrustStorage.h
parent76965a11aa4d230ae8636c67e0e6f9ce20f5ec5c (diff)
downloadqxmpp-ebbf58a05ca112b7e56df8aa072f410398a86dae.tar.gz
Add parameter 'keyOwnerJid' to trust storages' 'trustLevel()'
Diffstat (limited to 'src/client/QXmppTrustStorage.h')
-rw-r--r--src/client/QXmppTrustStorage.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/QXmppTrustStorage.h b/src/client/QXmppTrustStorage.h
index dffbcfae..c1db773d 100644
--- a/src/client/QXmppTrustStorage.h
+++ b/src/client/QXmppTrustStorage.h
@@ -55,7 +55,7 @@ public:
virtual QFuture<void> setTrustLevel(const QString &encryption, const QMultiHash<QString, QByteArray> &keyIds, TrustLevel trustLevel) = 0;
virtual QFuture<void> setTrustLevel(const QString &encryption, const QList<QString> &keyOwnerJids, TrustLevel oldTrustLevel, TrustLevel newTrustLevel) = 0;
- virtual QFuture<TrustLevel> trustLevel(const QString &encryption, const QByteArray &keyId) = 0;
+ virtual QFuture<TrustLevel> trustLevel(const QString &encryption, const QString &keyOwnerJid, const QByteArray &keyId) = 0;
virtual QFuture<void> resetAll(const QString &encryption) = 0;
};