diff options
| author | Jonah BrĂ¼chert <jbb.prv@gmx.de> | 2019-05-10 22:31:48 +0200 |
|---|---|---|
| committer | LNJ <lnj@kaidan.im> | 2019-09-08 14:07:00 +0200 |
| commit | b18a57daa33f0fefa5f4c63aa7f448b48d302e0d (patch) | |
| tree | 8682c7ea44b834a2910035049238e8628db552a0 /src/base/QXmppMamIq.h | |
| parent | 35256b7d95374717905f8ac8d4d524c4b691389e (diff) | |
| download | qxmpp-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/QXmppMamIq.h')
| -rw-r--r-- | src/base/QXmppMamIq.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/base/QXmppMamIq.h b/src/base/QXmppMamIq.h index 78a6f943..65f0b3f5 100644 --- a/src/base/QXmppMamIq.h +++ b/src/base/QXmppMamIq.h @@ -47,8 +47,8 @@ public: static bool isMamQueryIq(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; private: QXmppDataForm m_form; @@ -72,8 +72,8 @@ public: static bool isMamResultIq(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; private: QXmppResultSetReply m_resultSetReply; |
