aboutsummaryrefslogtreecommitdiff
path: root/src/base/QXmppArchiveIq.h
diff options
context:
space:
mode:
authorJonah BrĂ¼chert <jbb.prv@gmx.de>2019-05-10 22:31:48 +0200
committerLNJ <lnj@kaidan.im>2019-09-08 14:07:00 +0200
commitb18a57daa33f0fefa5f4c63aa7f448b48d302e0d (patch)
tree8682c7ea44b834a2910035049238e8628db552a0 /src/base/QXmppArchiveIq.h
parent35256b7d95374717905f8ac8d4d524c4b691389e (diff)
downloadqxmpp-b18a57daa33f0fefa5f4c63aa7f448b48d302e0d.tar.gz
Modernize codebase using clang-tidy
Using the following checks: * modernize-use-nullptr * modernize-use-override * modernize-use-using * modernize-use-bool-literals
Diffstat (limited to 'src/base/QXmppArchiveIq.h')
-rw-r--r--src/base/QXmppArchiveIq.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/base/QXmppArchiveIq.h b/src/base/QXmppArchiveIq.h
index 1f82174a..a631e096 100644
--- a/src/base/QXmppArchiveIq.h
+++ b/src/base/QXmppArchiveIq.h
@@ -111,8 +111,8 @@ public:
static bool isArchiveChatIq(const QDomElement &element);
protected:
- void parseElementFromChild(const QDomElement &element);
- void toXmlElementFromChild(QXmlStreamWriter *writer) const;
+ void parseElementFromChild(const QDomElement &element) override;
+ void toXmlElementFromChild(QXmlStreamWriter *writer) const override;
/// \endcond
private:
@@ -153,8 +153,8 @@ public:
protected:
/// \cond
- void parseElementFromChild(const QDomElement &element);
- void toXmlElementFromChild(QXmlStreamWriter *writer) const;
+ void parseElementFromChild(const QDomElement &element) override;
+ void toXmlElementFromChild(QXmlStreamWriter *writer) const override;
/// \endcond
private:
@@ -186,8 +186,8 @@ public:
static bool isArchiveRemoveIq(const QDomElement &element);
protected:
- void parseElementFromChild(const QDomElement &element);
- void toXmlElementFromChild(QXmlStreamWriter *writer) const;
+ void parseElementFromChild(const QDomElement &element) override;
+ void toXmlElementFromChild(QXmlStreamWriter *writer) const override;
/// \endcond
private:
@@ -218,8 +218,8 @@ public:
static bool isArchiveRetrieveIq(const QDomElement &element);
protected:
- void parseElementFromChild(const QDomElement &element);
- void toXmlElementFromChild(QXmlStreamWriter *writer) const;
+ void parseElementFromChild(const QDomElement &element) override;
+ void toXmlElementFromChild(QXmlStreamWriter *writer) const override;
/// \endcond
private:
@@ -239,8 +239,8 @@ public:
static bool isArchivePrefIq(const QDomElement &element);
protected:
- void parseElementFromChild(const QDomElement &element);
- void toXmlElementFromChild(QXmlStreamWriter *writer) const;
+ void parseElementFromChild(const QDomElement &element) override;
+ void toXmlElementFromChild(QXmlStreamWriter *writer) const override;
/// \endcond
};