aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppBitsOfBinaryIq.cpp
diff options
context:
space:
mode:
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;