summaryrefslogtreecommitdiff
path: root/include/oox/core/fragmenthandler2.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/core/fragmenthandler2.hxx')
-rw-r--r--include/oox/core/fragmenthandler2.hxx36
1 files changed, 18 insertions, 18 deletions
diff --git a/include/oox/core/fragmenthandler2.hxx b/include/oox/core/fragmenthandler2.hxx
index a63d1601fd9e..de2857dd39eb 100644
--- a/include/oox/core/fragmenthandler2.hxx
+++ b/include/oox/core/fragmenthandler2.hxx
@@ -52,8 +52,8 @@ public:
virtual ~FragmentHandler2();
// resolve ambiguity from base classes
- virtual void SAL_CALL acquire() throw() SAL_OVERRIDE { FragmentHandler::acquire(); }
- virtual void SAL_CALL release() throw() SAL_OVERRIDE { FragmentHandler::release(); }
+ virtual void SAL_CALL acquire() throw() override { FragmentHandler::acquire(); }
+ virtual void SAL_CALL release() throw() override { FragmentHandler::release(); }
// com.sun.star.xml.sax.XFastContextHandler interface ---------------------
@@ -62,48 +62,48 @@ 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;
// com.sun.star.xml.sax.XFastDocumentHandler interface --------------------
virtual void SAL_CALL startDocument()
throw( ::com::sun::star::xml::sax::SAXException,
- ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ ::com::sun::star::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL endDocument()
throw( ::com::sun::star::xml::sax::SAXException,
- ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ ::com::sun::star::uno::RuntimeException, std::exception ) 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;
// oox.core.FragmentHandler2 interface ------------------------------------