summaryrefslogtreecommitdiff
path: root/xmloff/source/xforms/TokenContext.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/xforms/TokenContext.hxx')
-rw-r--r--xmloff/source/xforms/TokenContext.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/xforms/TokenContext.hxx b/xmloff/source/xforms/TokenContext.hxx
index da82828d557c..156b80305758 100644
--- a/xmloff/source/xforms/TokenContext.hxx
+++ b/xmloff/source/xforms/TokenContext.hxx
@@ -63,7 +63,7 @@ public:
* create a warning for all others. Classes that wish to override
* StartElement need to call the parent method. */
virtual void StartElement(
- const com::sun::star::uno::Reference<com::sun::star::xml::sax::XAttributeList>& xAttrList );
+ const com::sun::star::uno::Reference<com::sun::star::xml::sax::XAttributeList>& xAttrList ) SAL_OVERRIDE;
/** call HandleChild for each child element in the token map;
* create a warning for all others. Classes that wish to override
@@ -72,13 +72,13 @@ public:
virtual SvXMLImportContext* CreateChildContext(
sal_uInt16 nPrefix,
const OUString& rLocalName,
- const com::sun::star::uno::Reference<com::sun::star::xml::sax::XAttributeList>& xAttrList );
+ const com::sun::star::uno::Reference<com::sun::star::xml::sax::XAttributeList>& xAttrList ) SAL_OVERRIDE;
/** Create a warning for all non-namespace character
* content. Classes that wish to deal with character content have
* to overload this method anyway, and will thus get rid of the
* warnings. */
- virtual void Characters( const OUString& rChars );
+ virtual void Characters( const OUString& rChars ) SAL_OVERRIDE;
protected:
/** will be called for each attribute */