diff options
| author | Linus Jahn <lnj@kaidan.im> | 2022-03-13 01:20:19 +0100 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2022-03-13 02:11:14 +0100 |
| commit | 7820a630ab21798aa3dc1540d5f7598b3ed23033 (patch) | |
| tree | 8da0c525322da7a9004b99e03e216f9bd4ed42fd /src/base/QXmppStun.cpp | |
| parent | 02f147f67a5dcb45d5cc876efe5874dd07c6ace5 (diff) | |
| download | qxmpp-7820a630ab21798aa3dc1540d5f7598b3ed23033.tar.gz | |
Stun: Use QString multi-arg
Diffstat (limited to 'src/base/QXmppStun.cpp')
| -rw-r--r-- | src/base/QXmppStun.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/base/QXmppStun.cpp b/src/base/QXmppStun.cpp index cd0dc384..c5005237 100644 --- a/src/base/QXmppStun.cpp +++ b/src/base/QXmppStun.cpp @@ -1039,8 +1039,7 @@ QString QXmppStunMessage::toString() const break; } dumpLines << QStringLiteral(" type %1 (%2)") - .arg(typeName) - .arg(QString::number(m_type)); + .arg(typeName, QString::number(m_type)); dumpLines << QStringLiteral(" id %1").arg(QString::fromLatin1(m_id.toHex())); // attributes |
