diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/QXmppSendStanzaParams.cpp | 2 | ||||
| -rw-r--r-- | src/client/QXmppSendStanzaParams.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/client/QXmppSendStanzaParams.cpp b/src/client/QXmppSendStanzaParams.cpp index afbcdbc6..ca628f14 100644 --- a/src/client/QXmppSendStanzaParams.cpp +++ b/src/client/QXmppSendStanzaParams.cpp @@ -48,7 +48,7 @@ QVector<QString> QXmppSendStanzaParams::encryptionJids() const /// If this is empty, the stanza should be encrypted for the recipient. /// This option is useful for groupchats. /// -void QXmppSendStanzaParams::sendEncryptionJids(QVector<QString> encryptionJids) +void QXmppSendStanzaParams::setEncryptionJids(QVector<QString> encryptionJids) { d->encryptionJids = std::move(encryptionJids); } diff --git a/src/client/QXmppSendStanzaParams.h b/src/client/QXmppSendStanzaParams.h index 0b222b45..aed8f241 100644 --- a/src/client/QXmppSendStanzaParams.h +++ b/src/client/QXmppSendStanzaParams.h @@ -20,7 +20,7 @@ public: QXmppSendStanzaParams &operator=(const QXmppSendStanzaParams &); QVector<QString> encryptionJids() const; - void sendEncryptionJids(QVector<QString>); + void setEncryptionJids(QVector<QString>); private: QSharedDataPointer<QXmppSendStanzaParamsPrivate> d; |
