aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppBitsOfBinaryIq.cpp
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2022-09-05 20:37:05 +0200
committerLinus Jahn <lnj@kaidan.im>2022-09-06 00:46:56 +0200
commit5f813f8a4bbe1e075daad7b3933829044befffb4 (patch)
tree20102aa665b03cfb6dfe0c6ece94938320b6430e /src/base/QXmppBitsOfBinaryIq.cpp
parent4c60b13e0b8011e4e0b093a690e939f3b23e2436 (diff)
Reformat code
Diffstat (limited to 'src/base/QXmppBitsOfBinaryIq.cpp')
-rw-r--r--src/base/QXmppBitsOfBinaryIq.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/base/QXmppBitsOfBinaryIq.cpp b/src/base/QXmppBitsOfBinaryIq.cpp
index e7256997..b55b7aa2 100644
--- a/src/base/QXmppBitsOfBinaryIq.cpp
+++ b/src/base/QXmppBitsOfBinaryIq.cpp
@@ -32,8 +32,9 @@ bool QXmppBitsOfBinaryIq::isBitsOfBinaryIq(const QDomElement &element)
{
QDomElement child = element.firstChildElement();
while (!child.isNull()) {
- if (QXmppBitsOfBinaryData::isBitsOfBinaryData(child))
+ if (QXmppBitsOfBinaryData::isBitsOfBinaryData(child)) {
return true;
+ }
child = child.nextSiblingElement();
}
return false;