aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppBitsOfBinaryData.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/QXmppBitsOfBinaryData.cpp')
-rw-r--r--src/base/QXmppBitsOfBinaryData.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/base/QXmppBitsOfBinaryData.cpp b/src/base/QXmppBitsOfBinaryData.cpp
index 89c83cf6..dd69a763 100644
--- a/src/base/QXmppBitsOfBinaryData.cpp
+++ b/src/base/QXmppBitsOfBinaryData.cpp
@@ -161,8 +161,7 @@ void QXmppBitsOfBinaryData::toXmlElementFromChild(QXmlStreamWriter *writer) cons
bool QXmppBitsOfBinaryData::operator==(const QXmppBitsOfBinaryData &other) const
{
return d->cid == other.cid() &&
- d->maxAge == other.maxAge() &&
- d->contentType == other.contentType() &&
- d->data == other.data();
+ d->maxAge == other.maxAge() &&
+ d->contentType == other.contentType() &&
+ d->data == other.data();
}
-