diff options
| author | Linus Jahn <lnj@kaidan.im> | 2021-09-30 15:52:59 +0200 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2021-09-30 16:11:17 +0200 |
| commit | 77a9a5c76685795376e8acd4d684c30a77192795 (patch) | |
| tree | cf633ee781a5481b78d95181a459d5bd564ff6c2 /src/client/QXmppTrustStorage.cpp | |
| parent | 756be3004d8462b54c743b529f6d808168da1566 (diff) | |
| download | qxmpp-77a9a5c76685795376e8acd4d684c30a77192795.tar.gz | |
TrustStorage: Remove unnecessary const constraint
Some implementations may require non-const access.
Diffstat (limited to 'src/client/QXmppTrustStorage.cpp')
| -rw-r--r-- | src/client/QXmppTrustStorage.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/QXmppTrustStorage.cpp b/src/client/QXmppTrustStorage.cpp index 16b858c2..51ebea82 100644 --- a/src/client/QXmppTrustStorage.cpp +++ b/src/client/QXmppTrustStorage.cpp @@ -74,7 +74,7 @@ /// /// -/// \fn QXmppTrustStorage::ownKey(const QString &encryption) const +/// \fn QXmppTrustStorage::ownKey(const QString &encryption) /// /// Returns an own key (i.e., the key used by this client instance). /// @@ -107,7 +107,7 @@ /// /// -/// \fn QXmppTrustStorage::keys(const QString &encryption, TrustLevels trustLevels = {}) const +/// \fn QXmppTrustStorage::keys(const QString &encryption, TrustLevels trustLevels = {}) /// /// Returns the JIDs of the key owners mapped to the IDs of their keys with a /// specific trust level. @@ -144,7 +144,7 @@ /// /// -/// \fn QXmppTrustStorage::trustLevel(const QString &encryption, const QString &keyId) const +/// \fn QXmppTrustStorage::trustLevel(const QString &encryption, const QString &keyId) /// /// Returns the trust level of a key. /// |
