summaryrefslogtreecommitdiff
path: root/writerperfect/source/common/DocumentHandler.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerperfect/source/common/DocumentHandler.hxx')
-rw-r--r--writerperfect/source/common/DocumentHandler.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/writerperfect/source/common/DocumentHandler.hxx b/writerperfect/source/common/DocumentHandler.hxx
index be1e1f18b22d..dad1e0f61d0e 100644
--- a/writerperfect/source/common/DocumentHandler.hxx
+++ b/writerperfect/source/common/DocumentHandler.hxx
@@ -33,11 +33,11 @@ class DocumentHandler: public OdfDocumentHandler
{
public:
DocumentHandler(Reference < XDocumentHandler > &xHandler);
- void startDocument();
- void endDocument();
- void startElement(const char *psName, const WPXPropertyList &xPropList);
- void endElement(const char *psName);
- void characters(const WPXString &sCharacters);
+ void startDocument() SAL_OVERRIDE;
+ void endDocument() SAL_OVERRIDE;
+ void startElement(const char *psName, const WPXPropertyList &xPropList) SAL_OVERRIDE;
+ void endElement(const char *psName) SAL_OVERRIDE;
+ void characters(const WPXString &sCharacters) SAL_OVERRIDE;
private:
Reference < XDocumentHandler > mxHandler;