summaryrefslogtreecommitdiff
path: root/src/xmlpatterns/type/qabstractnodetest_p.h
diff options
context:
space:
mode:
authorAlexander Volkov <a.volkov@rusbitech.ru>2017-11-27 15:09:12 +0300
committerAlexander Volkov <a.volkov@rusbitech.ru>2017-11-27 21:45:07 +0000
commit3738362b9072b7f5a3c31e5e2ba214646efeed84 (patch)
tree09b99744049936facaba379e58a2e03124d2822a /src/xmlpatterns/type/qabstractnodetest_p.h
parent9ab300f9153b26df9b4dd3e9b92b875216cad83a (diff)
downloadqtxmlpatterns-3738362b9072b7f5a3c31e5e2ba214646efeed84.tar.gz
type: Add missing override and remove redundant virtual
Change-Id: I1c8c39947c9c6f54f6232d2a9cad5d5a41b4bd49 Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
Diffstat (limited to 'src/xmlpatterns/type/qabstractnodetest_p.h')
-rw-r--r--src/xmlpatterns/type/qabstractnodetest_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmlpatterns/type/qabstractnodetest_p.h b/src/xmlpatterns/type/qabstractnodetest_p.h
index 80e1914..00abee9 100644
--- a/src/xmlpatterns/type/qabstractnodetest_p.h
+++ b/src/xmlpatterns/type/qabstractnodetest_p.h
@@ -67,9 +67,9 @@ namespace QPatternist
public:
AbstractNodeTest(const ItemType::Ptr &primaryType);
- virtual bool xdtTypeMatches(const ItemType::Ptr &other) const;
- virtual ItemType::Ptr xdtSuperType() const;
- virtual ItemType::Ptr atomizedType() const;
+ bool xdtTypeMatches(const ItemType::Ptr &other) const override;
+ ItemType::Ptr xdtSuperType() const override;
+ ItemType::Ptr atomizedType() const override;
protected:
const ItemType::Ptr m_primaryType;