summaryrefslogtreecommitdiff
path: root/include/oox
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox')
-rw-r--r--include/oox/core/contexthandler.hxx2
-rw-r--r--include/oox/core/contexthandler2.hxx2
-rw-r--r--include/oox/core/fasttokenhandler.hxx2
-rw-r--r--include/oox/core/filterbase.hxx2
-rw-r--r--include/oox/core/filterdetect.hxx4
-rw-r--r--include/oox/core/fragmenthandler.hxx2
-rw-r--r--include/oox/core/fragmenthandler2.hxx2
-rw-r--r--include/oox/core/xmlfilterbase.hxx2
-rw-r--r--include/oox/crypto/AgileEngine.hxx2
-rw-r--r--include/oox/crypto/Standard2007Engine.hxx2
-rw-r--r--include/oox/drawingml/connectorshapecontext.hxx2
-rw-r--r--include/oox/drawingml/graphicshapecontext.hxx4
-rw-r--r--include/oox/drawingml/shapecontext.hxx2
-rw-r--r--include/oox/drawingml/shapegroupcontext.hxx2
-rw-r--r--include/oox/drawingml/themefragmenthandler.hxx2
-rw-r--r--include/oox/dump/dumperbase.hxx16
-rw-r--r--include/oox/dump/xlsbdumper.hxx2
-rw-r--r--include/oox/export/vmlexport.hxx2
-rw-r--r--include/oox/helper/binaryinputstream.hxx2
-rw-r--r--include/oox/helper/binaryoutputstream.hxx2
-rw-r--r--include/oox/helper/binarystreambase.hxx2
-rw-r--r--include/oox/helper/progressbar.hxx4
-rw-r--r--include/oox/helper/zipstorage.hxx2
-rw-r--r--include/oox/ole/olehelper.hxx2
-rw-r--r--include/oox/ole/olestorage.hxx2
-rw-r--r--include/oox/ppt/customshowlistcontext.hxx2
-rw-r--r--include/oox/ppt/layoutfragmenthandler.hxx2
-rw-r--r--include/oox/ppt/pptimport.hxx2
-rw-r--r--include/oox/ppt/pptshape.hxx2
-rw-r--r--include/oox/ppt/presentationfragmenthandler.hxx2
-rw-r--r--include/oox/ppt/slidefragmenthandler.hxx2
-rw-r--r--include/oox/ppt/slidemastertextstylescontext.hxx2
-rw-r--r--include/oox/ppt/slidetimingcontext.hxx2
-rw-r--r--include/oox/ppt/slidetransitioncontext.hxx2
-rw-r--r--include/oox/ppt/soundactioncontext.hxx2
-rw-r--r--include/oox/ppt/timenodelistcontext.hxx4
-rw-r--r--include/oox/vml/vmlinputstream.hxx2
-rw-r--r--include/oox/vml/vmlshape.hxx2
38 files changed, 49 insertions, 49 deletions
diff --git a/include/oox/core/contexthandler.hxx b/include/oox/core/contexthandler.hxx
index 72973dd9fc81..68b72ad91042 100644
--- a/include/oox/core/contexthandler.hxx
+++ b/include/oox/core/contexthandler.hxx
@@ -61,7 +61,7 @@ class OOX_DLLPUBLIC ContextHandler : public ContextHandler_BASE
{
public:
explicit ContextHandler( const ContextHandler& rParent );
- virtual ~ContextHandler();
+ virtual ~ContextHandler() override;
/** Returns the filter instance. */
XmlFilterBase& getFilter() const;
diff --git a/include/oox/core/contexthandler2.hxx b/include/oox/core/contexthandler2.hxx
index d1725227bfc8..09ebd87c7dc9 100644
--- a/include/oox/core/contexthandler2.hxx
+++ b/include/oox/core/contexthandler2.hxx
@@ -227,7 +227,7 @@ class OOX_DLLPUBLIC ContextHandler2 : public ContextHandler, public ContextHandl
{
public:
explicit ContextHandler2( ContextHandler2Helper& rParent );
- virtual ~ContextHandler2();
+ virtual ~ContextHandler2() override;
// resolve ambiguity from base classes
virtual void SAL_CALL acquire() throw() override { ContextHandler::acquire(); }
diff --git a/include/oox/core/fasttokenhandler.hxx b/include/oox/core/fasttokenhandler.hxx
index 59d484f210e5..226eb9f5544a 100644
--- a/include/oox/core/fasttokenhandler.hxx
+++ b/include/oox/core/fasttokenhandler.hxx
@@ -49,7 +49,7 @@ class OOX_DLLPUBLIC FastTokenHandler :
{
public:
explicit FastTokenHandler();
- virtual ~FastTokenHandler();
+ virtual ~FastTokenHandler() override;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName() throw (css::uno::RuntimeException, std::exception) override;
diff --git a/include/oox/core/filterbase.hxx b/include/oox/core/filterbase.hxx
index f225c9a77ec7..f73c53a7cabb 100644
--- a/include/oox/core/filterbase.hxx
+++ b/include/oox/core/filterbase.hxx
@@ -99,7 +99,7 @@ public:
const css::uno::Reference< css::uno::XComponentContext >& rxContext )
throw( css::uno::RuntimeException );
- virtual ~FilterBase();
+ virtual ~FilterBase() override;
/** Returns true, if filter is an import filter. */
bool isImportFilter() const;
diff --git a/include/oox/core/filterdetect.hxx b/include/oox/core/filterdetect.hxx
index a2c4ff5e86e8..2fdf4d93f4b0 100644
--- a/include/oox/core/filterdetect.hxx
+++ b/include/oox/core/filterdetect.hxx
@@ -62,7 +62,7 @@ class FilterDetectDocHandler : public ::cppu::WeakImplHelper< css::xml::sax::XFa
{
public:
explicit FilterDetectDocHandler( const css::uno::Reference< css::uno::XComponentContext >& rxContext, OUString& rFilter );
- virtual ~FilterDetectDocHandler();
+ virtual ~FilterDetectDocHandler() override;
// XFastDocumentHandler
virtual void SAL_CALL startDocument() throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override;
@@ -100,7 +100,7 @@ class OOX_DLLPUBLIC FilterDetect : public ::cppu::WeakImplHelper<css::document::
public:
explicit FilterDetect( const css::uno::Reference< css::uno::XComponentContext >& rxContext )
throw( css::uno::RuntimeException );
- virtual ~FilterDetect();
+ virtual ~FilterDetect() override;
/** Tries to extract an unencrypted ZIP package from the passed media
descriptor.
diff --git a/include/oox/core/fragmenthandler.hxx b/include/oox/core/fragmenthandler.hxx
index 7077a3322cb6..b1b14f5fd98f 100644
--- a/include/oox/core/fragmenthandler.hxx
+++ b/include/oox/core/fragmenthandler.hxx
@@ -91,7 +91,7 @@ class OOX_DLLPUBLIC FragmentHandler : public FragmentHandler_BASE
{
public:
explicit FragmentHandler( XmlFilterBase& rFilter, const OUString& rFragmentPath );
- virtual ~FragmentHandler();
+ virtual ~FragmentHandler() override;
/** Returns the com.sun.star.xml.sax.XFastContextHandler interface of this context. */
css::uno::Reference< css::xml::sax::XFastContextHandler >
diff --git a/include/oox/core/fragmenthandler2.hxx b/include/oox/core/fragmenthandler2.hxx
index 0d2264ae224b..35f203df0ea4 100644
--- a/include/oox/core/fragmenthandler2.hxx
+++ b/include/oox/core/fragmenthandler2.hxx
@@ -68,7 +68,7 @@ public:
XmlFilterBase& rFilter,
const OUString& rFragmentPath,
bool bEnableTrimSpace = true );
- virtual ~FragmentHandler2();
+ virtual ~FragmentHandler2() override;
// resolve ambiguity from base classes
virtual void SAL_CALL acquire() throw() override { FragmentHandler::acquire(); }
diff --git a/include/oox/core/xmlfilterbase.hxx b/include/oox/core/xmlfilterbase.hxx
index 32f5430f2526..1a9be6a15ff9 100644
--- a/include/oox/core/xmlfilterbase.hxx
+++ b/include/oox/core/xmlfilterbase.hxx
@@ -87,7 +87,7 @@ public:
const css::uno::Reference< css::uno::XComponentContext >& rxContext )
throw( css::uno::RuntimeException );
- virtual ~XmlFilterBase();
+ virtual ~XmlFilterBase() override;
/** Has to be implemented by each filter, returns the current theme. */
virtual const ::oox::drawingml::Theme*
diff --git a/include/oox/crypto/AgileEngine.hxx b/include/oox/crypto/AgileEngine.hxx
index 2bb73305d441..57a3084dd526 100644
--- a/include/oox/crypto/AgileEngine.hxx
+++ b/include/oox/crypto/AgileEngine.hxx
@@ -64,7 +64,7 @@ class AgileEngine : public CryptoEngine
public:
AgileEngine();
- virtual ~AgileEngine();
+ virtual ~AgileEngine() override;
AgileEncryptionInfo& getInfo() { return mInfo;}
diff --git a/include/oox/crypto/Standard2007Engine.hxx b/include/oox/crypto/Standard2007Engine.hxx
index 05bdc995e1a8..39ce89466ccc 100644
--- a/include/oox/crypto/Standard2007Engine.hxx
+++ b/include/oox/crypto/Standard2007Engine.hxx
@@ -94,7 +94,7 @@ class Standard2007Engine : public CryptoEngine
public:
Standard2007Engine();
- virtual ~Standard2007Engine();
+ virtual ~Standard2007Engine() override;
StandardEncryptionInfo& getInfo() { return mInfo;}
diff --git a/include/oox/drawingml/connectorshapecontext.hxx b/include/oox/drawingml/connectorshapecontext.hxx
index 9f6a1a655b52..71b5e50ff6bf 100644
--- a/include/oox/drawingml/connectorshapecontext.hxx
+++ b/include/oox/drawingml/connectorshapecontext.hxx
@@ -35,7 +35,7 @@ class OOX_DLLPUBLIC ConnectorShapeContext : public ShapeContext
{
public:
ConnectorShapeContext( ::oox::core::ContextHandler2Helper& rParent, ShapePtr pMasterShapePtr, ShapePtr pGroupShapePtr );
- virtual ~ConnectorShapeContext();
+ virtual ~ConnectorShapeContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
};
diff --git a/include/oox/drawingml/graphicshapecontext.hxx b/include/oox/drawingml/graphicshapecontext.hxx
index fed6d893007f..22218fdee265 100644
--- a/include/oox/drawingml/graphicshapecontext.hxx
+++ b/include/oox/drawingml/graphicshapecontext.hxx
@@ -60,7 +60,7 @@ class OleObjectGraphicDataContext : public ShapeContext
{
public:
OleObjectGraphicDataContext( ::oox::core::ContextHandler2Helper& rParent, ShapePtr pShapePtr );
- virtual ~OleObjectGraphicDataContext();
+ virtual ~OleObjectGraphicDataContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
private:
@@ -73,7 +73,7 @@ class DiagramGraphicDataContext
{
public:
DiagramGraphicDataContext( ::oox::core::ContextHandler2Helper& rParent, ShapePtr pShapePtr );
- virtual ~DiagramGraphicDataContext();
+ virtual ~DiagramGraphicDataContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
private:
diff --git a/include/oox/drawingml/shapecontext.hxx b/include/oox/drawingml/shapecontext.hxx
index 95a1ac08bd6c..e745b9723469 100644
--- a/include/oox/drawingml/shapecontext.hxx
+++ b/include/oox/drawingml/shapecontext.hxx
@@ -34,7 +34,7 @@ class OOX_DLLPUBLIC ShapeContext : public ::oox::core::ContextHandler2
{
public:
ShapeContext( ::oox::core::ContextHandler2Helper& rParent, ShapePtr const & pMasterShapePtr, ShapePtr const & pShapePtr );
- virtual ~ShapeContext();
+ virtual ~ShapeContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/include/oox/drawingml/shapegroupcontext.hxx b/include/oox/drawingml/shapegroupcontext.hxx
index 07b8538ea268..d66457a566b9 100644
--- a/include/oox/drawingml/shapegroupcontext.hxx
+++ b/include/oox/drawingml/shapegroupcontext.hxx
@@ -34,7 +34,7 @@ class OOX_DLLPUBLIC ShapeGroupContext : public ::oox::core::ContextHandler2
{
public:
ShapeGroupContext( ::oox::core::ContextHandler2Helper& rParent, ShapePtr const & pMasterShapePtr, ShapePtr const & pGroupShapePtr );
- virtual ~ShapeGroupContext();
+ virtual ~ShapeGroupContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
protected:
diff --git a/include/oox/drawingml/themefragmenthandler.hxx b/include/oox/drawingml/themefragmenthandler.hxx
index d097e022a7ec..25df0882cf09 100644
--- a/include/oox/drawingml/themefragmenthandler.hxx
+++ b/include/oox/drawingml/themefragmenthandler.hxx
@@ -42,7 +42,7 @@ public:
::oox::core::XmlFilterBase& rFilter,
const OUString& rFragmentPath,
Theme& rTheme );
- virtual ~ThemeFragmentHandler();
+ virtual ~ThemeFragmentHandler() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) override;
diff --git a/include/oox/dump/dumperbase.hxx b/include/oox/dump/dumperbase.hxx
index 7e10ee138f25..c8927d6cb3d7 100644
--- a/include/oox/dump/dumperbase.hxx
+++ b/include/oox/dump/dumperbase.hxx
@@ -512,7 +512,7 @@ public:
typedef OUStringMap::const_iterator const_iterator;
public:
- virtual ~NameListBase();
+ virtual ~NameListBase() override;
/** Sets a name for the specified key. */
void setName( sal_Int64 nKey, const String& rName );
@@ -764,7 +764,7 @@ public:
const StorageRef& rxRootStrg,
const OUString& rSysFileName );
- virtual ~SharedConfigData();
+ virtual ~SharedConfigData() override;
const css::uno::Reference< css::uno::XComponentContext >& getContext() const { return mxContext; }
const StorageRef& getRootStorage() const { return mxRootStrg; }
@@ -846,7 +846,7 @@ public:
const StorageRef& rxRootStrg,
const OUString& rSysFileName );
- virtual ~Config();
+ virtual ~Config() override;
const css::uno::Reference< css::uno::XComponentContext >& getContext() const { return mxCfgData->getContext(); }
const StorageRef& getRootStorage() const { return mxCfgData->getRootStorage(); }
@@ -1079,7 +1079,7 @@ class StorageIterator : public Base
{
public:
explicit StorageIterator( const StorageRef& rxStrg );
- virtual ~StorageIterator();
+ virtual ~StorageIterator() override;
StorageIterator& operator++();
@@ -1100,7 +1100,7 @@ private:
class ObjectBase : public Base
{
public:
- virtual ~ObjectBase();
+ virtual ~ObjectBase() override;
const css::uno::Reference< css::uno::XComponentContext >&
getContext() const { return mxConfig->getContext(); }
@@ -1200,7 +1200,7 @@ private:
class OutputObjectBase : public ObjectBase
{
public:
- virtual ~OutputObjectBase();
+ virtual ~OutputObjectBase() override;
protected:
@@ -1364,7 +1364,7 @@ void OutputObjectBase::writeHexPairItem( const String& rName, Type nData1, Type
class InputObjectBase : public OutputObjectBase
{
public:
- virtual ~InputObjectBase();
+ virtual ~InputObjectBase() override;
protected:
@@ -1704,7 +1704,7 @@ private:
class DumperBase : public ObjectBase
{
public:
- virtual ~DumperBase();
+ virtual ~DumperBase() override;
bool isImportEnabled() const;
bool isImportCancelled() const;
diff --git a/include/oox/dump/xlsbdumper.hxx b/include/oox/dump/xlsbdumper.hxx
index 8c4e5f31f09a..ad692ef721b9 100644
--- a/include/oox/dump/xlsbdumper.hxx
+++ b/include/oox/dump/xlsbdumper.hxx
@@ -50,7 +50,7 @@ class RecordObjectBase : public SequenceRecordObjectBase
{
protected:
explicit RecordObjectBase();
- virtual ~RecordObjectBase();
+ virtual ~RecordObjectBase() override;
using SequenceRecordObjectBase::construct;
diff --git a/include/oox/export/vmlexport.hxx b/include/oox/export/vmlexport.hxx
index 618dd7528384..e9971e0c685a 100644
--- a/include/oox/export/vmlexport.hxx
+++ b/include/oox/export/vmlexport.hxx
@@ -106,7 +106,7 @@ class OOX_DLLPUBLIC VMLExport : public EscherEx
public:
VMLExport( ::sax_fastparser::FSHelperPtr const & pSerializer, VMLTextExport* pTextExport = nullptr );
- virtual ~VMLExport();
+ virtual ~VMLExport() override;
const ::sax_fastparser::FSHelperPtr&
GetFS() { return m_pSerializer; }
diff --git a/include/oox/helper/binaryinputstream.hxx b/include/oox/helper/binaryinputstream.hxx
index cf247f02797b..1e86437daf67 100644
--- a/include/oox/helper/binaryinputstream.hxx
+++ b/include/oox/helper/binaryinputstream.hxx
@@ -270,7 +270,7 @@ public:
const css::uno::Reference< css::io::XInputStream >& rxInStrm,
bool bAutoClose );
- virtual ~BinaryXInputStream();
+ virtual ~BinaryXInputStream() override;
/** Closes the input stream. Does also close the wrapped UNO input stream
if bAutoClose has been set to true in the constructor. */
diff --git a/include/oox/helper/binaryoutputstream.hxx b/include/oox/helper/binaryoutputstream.hxx
index 4dfbaf8559cc..796777f60209 100644
--- a/include/oox/helper/binaryoutputstream.hxx
+++ b/include/oox/helper/binaryoutputstream.hxx
@@ -149,7 +149,7 @@ public:
const css::uno::Reference< css::io::XOutputStream >& rxOutStrm,
bool bAutoClose );
- virtual ~BinaryXOutputStream();
+ virtual ~BinaryXOutputStream() override;
/** Flushes and closes the output stream. Does also close the wrapped UNO
output stream if bAutoClose has been set to true in the constructor. */
diff --git a/include/oox/helper/binarystreambase.hxx b/include/oox/helper/binarystreambase.hxx
index f9fd1e0ebe15..d5f2387872f8 100644
--- a/include/oox/helper/binarystreambase.hxx
+++ b/include/oox/helper/binarystreambase.hxx
@@ -123,7 +123,7 @@ private:
class OOX_DLLPUBLIC BinaryXSeekableStream : public virtual BinaryStreamBase
{
public:
- virtual ~BinaryXSeekableStream();
+ virtual ~BinaryXSeekableStream() override;
/** Returns the size of the stream, if wrapped stream is seekable, otherwise -1. */
virtual sal_Int64 size() const override;
diff --git a/include/oox/helper/progressbar.hxx b/include/oox/helper/progressbar.hxx
index cbc4244a7ca7..88ddb99ff919 100644
--- a/include/oox/helper/progressbar.hxx
+++ b/include/oox/helper/progressbar.hxx
@@ -67,7 +67,7 @@ typedef std::shared_ptr< ISegmentProgressBar > ISegmentProgressBarRef;
class OOX_DLLPUBLIC ISegmentProgressBar : public IProgressBar
{
public:
- virtual ~ISegmentProgressBar();
+ virtual ~ISegmentProgressBar() override;
/** Returns the length that is still free for creating sub segments. */
virtual double getFreeLength() const = 0;
@@ -86,7 +86,7 @@ public:
const css::uno::Reference< css::task::XStatusIndicator >& rxIndicator,
const OUString& rText );
- virtual ~ProgressBar();
+ virtual ~ProgressBar() override;
/** Returns the current position of the progress bar. */
virtual double getPosition() const override;
diff --git a/include/oox/helper/zipstorage.hxx b/include/oox/helper/zipstorage.hxx
index 4972254bbc0b..cea49fbd39bf 100644
--- a/include/oox/helper/zipstorage.hxx
+++ b/include/oox/helper/zipstorage.hxx
@@ -49,7 +49,7 @@ public:
const css::uno::Reference< css::uno::XComponentContext >& rxContext,
const css::uno::Reference< css::io::XStream >& rxStream );
- virtual ~ZipStorage();
+ virtual ~ZipStorage() override;
private:
explicit ZipStorage(
diff --git a/include/oox/ole/olehelper.hxx b/include/oox/ole/olehelper.hxx
index d848cc492fcb..4e2a2d8e62fc 100644
--- a/include/oox/ole/olehelper.hxx
+++ b/include/oox/ole/olehelper.hxx
@@ -154,7 +154,7 @@ protected:
sal_Int32 nSize );
public:
MSConvertOCXControls( const css::uno::Reference< css::frame::XModel >& rxModel );
- virtual ~MSConvertOCXControls();
+ virtual ~MSConvertOCXControls() override;
bool ReadOCXStorage( tools::SvRef<SotStorage>& rSrc1, css::uno::Reference< css::form::XFormComponent > & rxFormComp );
bool ReadOCXCtlsStream(tools::SvRef<SotStorageStream>& rSrc1, css::uno::Reference< css::form::XFormComponent > & rxFormComp,
sal_Int32 nPos, sal_Int32 nSize );
diff --git a/include/oox/ole/olestorage.hxx b/include/oox/ole/olestorage.hxx
index 88b0ff8c9c8a..ab8c249a652f 100644
--- a/include/oox/ole/olestorage.hxx
+++ b/include/oox/ole/olestorage.hxx
@@ -54,7 +54,7 @@ public:
const css::uno::Reference< css::io::XStream >& rxOutStream,
bool bBaseStreamAccess );
- virtual ~OleStorage();
+ virtual ~OleStorage() override;
private:
explicit OleStorage(
diff --git a/include/oox/ppt/customshowlistcontext.hxx b/include/oox/ppt/customshowlistcontext.hxx
index 5baea22103e5..34964697181e 100644
--- a/include/oox/ppt/customshowlistcontext.hxx
+++ b/include/oox/ppt/customshowlistcontext.hxx
@@ -48,7 +48,7 @@ namespace oox { namespace ppt {
CustomShowListContext( ::oox::core::FragmentHandler2& rParent,
std::vector< CustomShow >& rCustomShowList );
- virtual ~CustomShowListContext( );
+ virtual ~CustomShowListContext( ) override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
};
diff --git a/include/oox/ppt/layoutfragmenthandler.hxx b/include/oox/ppt/layoutfragmenthandler.hxx
index 5ec9351cda23..1afd0e9e7c45 100644
--- a/include/oox/ppt/layoutfragmenthandler.hxx
+++ b/include/oox/ppt/layoutfragmenthandler.hxx
@@ -35,7 +35,7 @@ class LayoutFragmentHandler : public SlideFragmentHandler
{
public:
LayoutFragmentHandler( ::oox::core::XmlFilterBase& rFilter, const OUString& rFragmentPath, SlidePersistPtr pMasterPersistPtr ) throw();
- virtual ~LayoutFragmentHandler() throw();
+ virtual ~LayoutFragmentHandler() throw() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
};
diff --git a/include/oox/ppt/pptimport.hxx b/include/oox/ppt/pptimport.hxx
index 2a2860721f5e..0d37d75deecd 100644
--- a/include/oox/ppt/pptimport.hxx
+++ b/include/oox/ppt/pptimport.hxx
@@ -57,7 +57,7 @@ public:
PowerPointImport( const css::uno::Reference< css::uno::XComponentContext >& rxContext )
throw( css::uno::RuntimeException );
- virtual ~PowerPointImport();
+ virtual ~PowerPointImport() override;
// from FilterBase
virtual bool importDocument() override;
diff --git a/include/oox/ppt/pptshape.hxx b/include/oox/ppt/pptshape.hxx
index e31eeab48682..5f147929bdde 100644
--- a/include/oox/ppt/pptshape.hxx
+++ b/include/oox/ppt/pptshape.hxx
@@ -55,7 +55,7 @@ public:
PPTShape( const oox::ppt::ShapeLocation eShapeLocation,
const sal_Char* pServiceType = nullptr );
- virtual ~PPTShape();
+ virtual ~PPTShape() override;
using oox::drawingml::Shape::addShape;
// addShape is creating and inserting the corresponding XShape.
diff --git a/include/oox/ppt/presentationfragmenthandler.hxx b/include/oox/ppt/presentationfragmenthandler.hxx
index 0457235e23ce..aeda119cd2f1 100644
--- a/include/oox/ppt/presentationfragmenthandler.hxx
+++ b/include/oox/ppt/presentationfragmenthandler.hxx
@@ -42,7 +42,7 @@ class PresentationFragmentHandler : public ::oox::core::FragmentHandler2
{
public:
PresentationFragmentHandler( ::oox::core::XmlFilterBase& rFilter, const OUString& rFragmentPath ) throw();
- virtual ~PresentationFragmentHandler() throw();
+ virtual ~PresentationFragmentHandler() throw() override;
virtual void finalizeImport() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
diff --git a/include/oox/ppt/slidefragmenthandler.hxx b/include/oox/ppt/slidefragmenthandler.hxx
index fb6b6f97917b..b6b4a3d57721 100644
--- a/include/oox/ppt/slidefragmenthandler.hxx
+++ b/include/oox/ppt/slidefragmenthandler.hxx
@@ -38,7 +38,7 @@ class SlideFragmentHandler : public ::oox::core::FragmentHandler2
{
public:
SlideFragmentHandler( ::oox::core::XmlFilterBase& rFilter, const OUString& rFragmentPath, SlidePersistPtr pPersistPtr, const ShapeLocation eShapeLocation );
- virtual ~SlideFragmentHandler();
+ virtual ~SlideFragmentHandler() override;
virtual void finalizeImport() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
diff --git a/include/oox/ppt/slidemastertextstylescontext.hxx b/include/oox/ppt/slidemastertextstylescontext.hxx
index f70cbd4768d1..a5ca1c2372b2 100644
--- a/include/oox/ppt/slidemastertextstylescontext.hxx
+++ b/include/oox/ppt/slidemastertextstylescontext.hxx
@@ -33,7 +33,7 @@ class SlideMasterTextStylesContext : public oox::core::FragmentHandler2
{
public:
SlideMasterTextStylesContext( ::oox::core::FragmentHandler2& rParent, SlidePersistPtr const & pSlidePersistPtr );
- virtual ~SlideMasterTextStylesContext();
+ virtual ~SlideMasterTextStylesContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
protected:
diff --git a/include/oox/ppt/slidetimingcontext.hxx b/include/oox/ppt/slidetimingcontext.hxx
index b13b8ad43a4a..de936ad2a205 100644
--- a/include/oox/ppt/slidetimingcontext.hxx
+++ b/include/oox/ppt/slidetimingcontext.hxx
@@ -33,7 +33,7 @@ class SlideTimingContext : public ::oox::core::FragmentHandler2
{
public:
SlideTimingContext( ::oox::core::FragmentHandler2& rParent, TimeNodePtrList & aTimeNodeList ) throw();
- virtual ~SlideTimingContext() throw();
+ virtual ~SlideTimingContext() throw() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
diff --git a/include/oox/ppt/slidetransitioncontext.hxx b/include/oox/ppt/slidetransitioncontext.hxx
index 1588cba3ec13..4edaa3fcae9f 100644
--- a/include/oox/ppt/slidetransitioncontext.hxx
+++ b/include/oox/ppt/slidetransitioncontext.hxx
@@ -38,7 +38,7 @@ namespace oox { namespace ppt {
SlideTransitionContext( ::oox::core::FragmentHandler2& rParent,
const AttributeList& rAttributes,
PropertyMap & aProperties ) throw();
- virtual ~SlideTransitionContext() throw();
+ virtual ~SlideTransitionContext() throw() override;
virtual void onEndElement() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
diff --git a/include/oox/ppt/soundactioncontext.hxx b/include/oox/ppt/soundactioncontext.hxx
index 7d7f714d7803..4680332a4fe4 100644
--- a/include/oox/ppt/soundactioncontext.hxx
+++ b/include/oox/ppt/soundactioncontext.hxx
@@ -37,7 +37,7 @@ class SoundActionContext : public ::oox::core::FragmentHandler2
{
public:
SoundActionContext( ::oox::core::FragmentHandler2& rParent, PropertyMap & aProperties ) throw();
- virtual ~SoundActionContext() throw();
+ virtual ~SoundActionContext() throw() override;
virtual void onEndElement() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
diff --git a/include/oox/ppt/timenodelistcontext.hxx b/include/oox/ppt/timenodelistcontext.hxx
index fe27bba634e6..1012f7328c7b 100644
--- a/include/oox/ppt/timenodelistcontext.hxx
+++ b/include/oox/ppt/timenodelistcontext.hxx
@@ -38,7 +38,7 @@ namespace oox { namespace ppt {
class TimeNodeContext : public ::oox::core::FragmentHandler2
{
public:
- virtual ~TimeNodeContext() throw();
+ virtual ~TimeNodeContext() throw() override;
static TimeNodeContext * SAL_CALL makeContext( ::oox::core::FragmentHandler2& rParent, sal_Int32 aElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttribs, const TimeNodePtr & pNode );
@@ -56,7 +56,7 @@ class TimeNodeListContext : public ::oox::core::FragmentHandler2
public:
TimeNodeListContext( ::oox::core::FragmentHandler2& rParent, TimeNodePtrList & aList ) throw();
- virtual ~TimeNodeListContext() throw();
+ virtual ~TimeNodeListContext() throw() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
diff --git a/include/oox/vml/vmlinputstream.hxx b/include/oox/vml/vmlinputstream.hxx
index 66ec958b381e..27e697f005e5 100644
--- a/include/oox/vml/vmlinputstream.hxx
+++ b/include/oox/vml/vmlinputstream.hxx
@@ -66,7 +66,7 @@ public:
explicit InputStream(
const css::uno::Reference< css::uno::XComponentContext >& rxContext,
const css::uno::Reference< css::io::XInputStream >& rxInStrm );
- virtual ~InputStream();
+ virtual ~InputStream() override;
virtual sal_Int32 SAL_CALL readBytes( css::uno::Sequence< sal_Int8 >& rData, sal_Int32 nBytesToRead )
throw (css::io::NotConnectedException, css::io::BufferSizeExceededException, css::io::IOException, css::uno::RuntimeException, std::exception) override;
diff --git a/include/oox/vml/vmlshape.hxx b/include/oox/vml/vmlshape.hxx
index 219feeb1489f..abb4161ec5cd 100644
--- a/include/oox/vml/vmlshape.hxx
+++ b/include/oox/vml/vmlshape.hxx
@@ -402,7 +402,7 @@ class GroupShape : public ShapeBase
{
public:
explicit GroupShape( Drawing& rDrawing );
- virtual ~GroupShape();
+ virtual ~GroupShape() override;
/** Returns read/write access to the container of child shapes and templates. */
ShapeContainer& getChildren() { return *mxChildren; }