aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppPubSubIq_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/QXmppPubSubIq_p.h')
-rw-r--r--src/base/QXmppPubSubIq_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/QXmppPubSubIq_p.h b/src/base/QXmppPubSubIq_p.h
index c8828579..0ff1de04 100644
--- a/src/base/QXmppPubSubIq_p.h
+++ b/src/base/QXmppPubSubIq_p.h
@@ -152,7 +152,7 @@ void PubSubIq<T>::parseItems(const QDomElement &queryElement)
childElement = childElement.nextSiblingElement(QStringLiteral("item"))) {
T item;
item.parse(childElement);
- m_items << std::move(item);
+ m_items.push_back(std::move(item));
}
}