summaryrefslogtreecommitdiff
path: root/src/xmlpatterns/schema/qxsdsimpletype_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlpatterns/schema/qxsdsimpletype_p.h')
-rw-r--r--src/xmlpatterns/schema/qxsdsimpletype_p.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/xmlpatterns/schema/qxsdsimpletype_p.h b/src/xmlpatterns/schema/qxsdsimpletype_p.h
index 7b1a2ea..c0ab9f7 100644
--- a/src/xmlpatterns/schema/qxsdsimpletype_p.h
+++ b/src/xmlpatterns/schema/qxsdsimpletype_p.h
@@ -83,7 +83,7 @@ namespace QPatternist
*
* @param namePool The name pool the type name is stored in.
*/
- virtual QString displayName(const NamePool::Ptr &namePool) const;
+ QString displayName(const NamePool::Ptr &namePool) const override;
/**
* Sets the base @p type of the simple type.
@@ -96,7 +96,7 @@ namespace QPatternist
* Returns the base type of the simple type or an empty pointer if no base type is
* set.
*/
- virtual SchemaType::Ptr wxsSuperType() const;
+ SchemaType::Ptr wxsSuperType() const override;
/**
* Sets the context @p component of the simple type.
@@ -177,7 +177,7 @@ namespace QPatternist
/**
* Returns the category (variety) of the simple type.
*/
- virtual TypeCategory category() const;
+ TypeCategory category() const override;
/**
* Sets the derivation @p method of the simple type.
@@ -189,12 +189,12 @@ namespace QPatternist
/**
* Returns the derivation method of the simple type.
*/
- virtual DerivationMethod derivationMethod() const;
+ DerivationMethod derivationMethod() const override;
/**
* Always returns @c true.
*/
- virtual bool isDefinedBySchema() const;
+ bool isDefinedBySchema() const override;
private:
SchemaType::Ptr m_superType;