aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppSendStanzaParams.cpp
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2022-05-24 14:20:39 +0200
committerLinus Jahn <lnj@kaidan.im>2022-05-24 14:21:10 +0200
commit66bcf88f19c9951bfde71f2578f06500e7ebc75f (patch)
treee66b166fc2899b1e256bb9ebd0542cc5f3da5f2e /src/client/QXmppSendStanzaParams.cpp
parent5cf3038e74983c45cf27d77214ec548db5d36572 (diff)
downloadqxmpp-66bcf88f19c9951bfde71f2578f06500e7ebc75f.tar.gz
SendStanzaParams: Fix typo in setter name
Diffstat (limited to 'src/client/QXmppSendStanzaParams.cpp')
-rw-r--r--src/client/QXmppSendStanzaParams.cpp2
1 files changed, 1 insertions, 1 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);
}