diff options
Diffstat (limited to 'src/base/QXmppIq.h')
| -rw-r--r-- | src/base/QXmppIq.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/base/QXmppIq.h b/src/base/QXmppIq.h index c147bb78..e7451e7c 100644 --- a/src/base/QXmppIq.h +++ b/src/base/QXmppIq.h @@ -53,18 +53,18 @@ public: QXmppIq(QXmppIq::Type type = QXmppIq::Get); QXmppIq(const QXmppIq &other); - ~QXmppIq(); + ~QXmppIq() override; QXmppIq& operator=(const QXmppIq &other); QXmppIq::Type type() const; void setType(QXmppIq::Type); - bool isXmppStanza() const; + bool isXmppStanza() const override; /// \cond - void parse(const QDomElement &element); - void toXml(QXmlStreamWriter *writer) const; + void parse(const QDomElement &element) override; + void toXml(QXmlStreamWriter *writer) const override; protected: virtual void parseElementFromChild(const QDomElement &element); |
