summaryrefslogtreecommitdiffstats
path: root/src/contacts/filters/qcontactchangelogfilter_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/contacts/filters/qcontactchangelogfilter_p.h')
-rw-r--r--src/contacts/filters/qcontactchangelogfilter_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/contacts/filters/qcontactchangelogfilter_p.h b/src/contacts/filters/qcontactchangelogfilter_p.h
index 49814bd6a..313828f2c 100644
--- a/src/contacts/filters/qcontactchangelogfilter_p.h
+++ b/src/contacts/filters/qcontactchangelogfilter_p.h
@@ -74,7 +74,7 @@ public:
}
- bool compare(const QContactFilterPrivate* other) const
+ bool compare(const QContactFilterPrivate* other) const override
{
const QContactChangeLogFilterPrivate *od = static_cast<const QContactChangeLogFilterPrivate*>(other);
if (m_eventType != od->m_eventType)
@@ -84,7 +84,7 @@ public:
return true;
}
- QDataStream& outputToStream(QDataStream& stream, quint8 formatVersion) const
+ QDataStream& outputToStream(QDataStream& stream, quint8 formatVersion) const override
{
if (formatVersion == 1) {
stream << static_cast<quint32>(m_eventType) << m_since;
@@ -92,7 +92,7 @@ public:
return stream;
}
- QDataStream& inputFromStream(QDataStream& stream, quint8 formatVersion)
+ QDataStream& inputFromStream(QDataStream& stream, quint8 formatVersion) override
{
if (formatVersion == 1) {
quint32 eventType;
@@ -103,7 +103,7 @@ public:
}
#ifndef QT_NO_DEBUG_STREAM
- QDebug& debugStreamOut(QDebug& dbg) const
+ QDebug& debugStreamOut(QDebug& dbg) const override
{
dbg.nospace() << "QContactChangeLogFilter(";
dbg.nospace() << "eventType=" << static_cast<quint32>(m_eventType) << ",since=" << m_since;