summaryrefslogtreecommitdiff
path: root/include/oox/core/contexthandler2.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/core/contexthandler2.hxx')
-rw-r--r--include/oox/core/contexthandler2.hxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/include/oox/core/contexthandler2.hxx b/include/oox/core/contexthandler2.hxx
index c94bda415ded..1e90cc06182a 100644
--- a/include/oox/core/contexthandler2.hxx
+++ b/include/oox/core/contexthandler2.hxx
@@ -214,8 +214,8 @@ public:
virtual ~ContextHandler2();
// resolve ambiguity from base classes
- virtual void SAL_CALL acquire() throw() SAL_OVERRIDE { ContextHandler::acquire(); }
- virtual void SAL_CALL release() throw() SAL_OVERRIDE { ContextHandler::release(); }
+ virtual void SAL_CALL acquire() throw() override { ContextHandler::acquire(); }
+ virtual void SAL_CALL release() throw() override { ContextHandler::release(); }
// com.sun.star.xml.sax.XFastContextHandler interface ---------------------
@@ -224,38 +224,38 @@ public:
sal_Int32 nElement,
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& rxAttribs )
throw( ::com::sun::star::xml::sax::SAXException,
- ::com::sun::star::uno::RuntimeException, std::exception ) SAL_FINAL SAL_OVERRIDE;
+ ::com::sun::star::uno::RuntimeException, std::exception ) SAL_FINAL override;
virtual void SAL_CALL startFastElement(
sal_Int32 nElement,
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& rxAttribs )
throw( ::com::sun::star::xml::sax::SAXException,
- ::com::sun::star::uno::RuntimeException, std::exception ) SAL_FINAL SAL_OVERRIDE;
+ ::com::sun::star::uno::RuntimeException, std::exception ) SAL_FINAL override;
virtual void SAL_CALL characters( const OUString& rChars )
throw( ::com::sun::star::xml::sax::SAXException,
- ::com::sun::star::uno::RuntimeException, std::exception ) SAL_FINAL SAL_OVERRIDE;
+ ::com::sun::star::uno::RuntimeException, std::exception ) SAL_FINAL override;
virtual void SAL_CALL endFastElement( sal_Int32 nElement )
throw( ::com::sun::star::xml::sax::SAXException,
- ::com::sun::star::uno::RuntimeException, std::exception ) SAL_FINAL SAL_OVERRIDE;
+ ::com::sun::star::uno::RuntimeException, std::exception ) SAL_FINAL override;
// oox.core.ContextHandler interface --------------------------------------
- virtual ContextHandlerRef createRecordContext( sal_Int32 nRecId, SequenceInputStream& rStrm ) SAL_OVERRIDE;
- virtual void startRecord( sal_Int32 nRecId, SequenceInputStream& rStrm ) SAL_OVERRIDE;
- virtual void endRecord( sal_Int32 nRecId ) SAL_OVERRIDE;
+ virtual ContextHandlerRef createRecordContext( sal_Int32 nRecId, SequenceInputStream& rStrm ) override;
+ virtual void startRecord( sal_Int32 nRecId, SequenceInputStream& rStrm ) override;
+ virtual void endRecord( sal_Int32 nRecId ) override;
// oox.core.ContextHandler2Helper interface -------------------------------
- virtual ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) SAL_OVERRIDE;
- virtual void onStartElement( const AttributeList& rAttribs ) SAL_OVERRIDE;
- virtual void onCharacters( const OUString& rChars ) SAL_OVERRIDE;
- virtual void onEndElement() SAL_OVERRIDE;
+ virtual ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
+ virtual void onStartElement( const AttributeList& rAttribs ) override;
+ virtual void onCharacters( const OUString& rChars ) override;
+ virtual void onEndElement() override;
- virtual ContextHandlerRef onCreateRecordContext( sal_Int32 nRecId, SequenceInputStream& rStrm ) SAL_OVERRIDE;
- virtual void onStartRecord( SequenceInputStream& rStrm ) SAL_OVERRIDE;
- virtual void onEndRecord() SAL_OVERRIDE;
+ virtual ContextHandlerRef onCreateRecordContext( sal_Int32 nRecId, SequenceInputStream& rStrm ) override;
+ virtual void onStartRecord( SequenceInputStream& rStrm ) override;
+ virtual void onEndRecord() override;
};
} // namespace core