summaryrefslogtreecommitdiff
path: root/writerfilter/source/ooxml
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter/source/ooxml')
-rw-r--r--writerfilter/source/ooxml/OOXMLDocumentImpl.hxx2
-rw-r--r--writerfilter/source/ooxml/OOXMLFastContextHandler.hxx24
-rw-r--r--writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx2
-rw-r--r--writerfilter/source/ooxml/OOXMLPropertySet.hxx22
-rw-r--r--writerfilter/source/ooxml/OOXMLStreamImpl.hxx2
5 files changed, 26 insertions, 26 deletions
diff --git a/writerfilter/source/ooxml/OOXMLDocumentImpl.hxx b/writerfilter/source/ooxml/OOXMLDocumentImpl.hxx
index f16be42be8f8..12a49abd3208 100644
--- a/writerfilter/source/ooxml/OOXMLDocumentImpl.hxx
+++ b/writerfilter/source/ooxml/OOXMLDocumentImpl.hxx
@@ -94,7 +94,7 @@ protected:
void resolveEmbeddingsStream(const OOXMLStream::Pointer_t& pStream);
public:
OOXMLDocumentImpl(OOXMLStream::Pointer_t const & pStream, const css::uno::Reference<css::task::XStatusIndicator>& xStatusIndicator, bool bSkipImages, const css::uno::Sequence<css::beans::PropertyValue>& rDescriptor);
- virtual ~OOXMLDocumentImpl();
+ virtual ~OOXMLDocumentImpl() override;
virtual void resolve(Stream & rStream) override;
diff --git a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
index a8ad379a7399..0550eecdf1ad 100644
--- a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
+++ b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
@@ -48,7 +48,7 @@ public:
explicit OOXMLFastContextHandler(OOXMLFastContextHandler * pContext);
- virtual ~OOXMLFastContextHandler();
+ virtual ~OOXMLFastContextHandler() override;
// css::xml::sax::XFastContextHandler:
virtual void SAL_CALL startFastElement (Token_t Element, const css::uno::Reference< css::xml::sax::XFastAttributeList >& Attribs)
@@ -243,7 +243,7 @@ class OOXMLFastContextHandlerStream : public OOXMLFastContextHandler
{
public:
explicit OOXMLFastContextHandlerStream(OOXMLFastContextHandler * pContext);
- virtual ~OOXMLFastContextHandlerStream();
+ virtual ~OOXMLFastContextHandlerStream() override;
virtual ResourceEnum_t getResource() const override { return STREAM; }
@@ -263,7 +263,7 @@ class OOXMLFastContextHandlerProperties : public OOXMLFastContextHandler
{
public:
explicit OOXMLFastContextHandlerProperties(OOXMLFastContextHandler * pContext);
- virtual ~OOXMLFastContextHandlerProperties();
+ virtual ~OOXMLFastContextHandlerProperties() override;
virtual OOXMLValue::Pointer_t getValue() const override;
virtual ResourceEnum_t getResource() const override { return PROPERTIES; }
@@ -300,7 +300,7 @@ class OOXMLFastContextHandlerPropertyTable :
{
public:
explicit OOXMLFastContextHandlerPropertyTable(OOXMLFastContextHandler * pContext);
- virtual ~OOXMLFastContextHandlerPropertyTable();
+ virtual ~OOXMLFastContextHandlerPropertyTable() override;
protected:
OOXMLTable mTable;
@@ -314,7 +314,7 @@ class OOXMLFastContextHandlerValue :
{
public:
explicit OOXMLFastContextHandlerValue(OOXMLFastContextHandler * pContext);
- virtual ~OOXMLFastContextHandlerValue();
+ virtual ~OOXMLFastContextHandlerValue() override;
void setValue(const OOXMLValue::Pointer_t& pValue);
virtual OOXMLValue::Pointer_t getValue() const override;
@@ -337,7 +337,7 @@ class OOXMLFastContextHandlerTable : public OOXMLFastContextHandler
{
public:
explicit OOXMLFastContextHandlerTable(OOXMLFastContextHandler * pContext);
- virtual ~OOXMLFastContextHandlerTable();
+ virtual ~OOXMLFastContextHandlerTable() override;
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext (Token_t Element,
const css::uno::Reference< css::xml::sax::XFastAttributeList > & Attribs)
@@ -362,7 +362,7 @@ class OOXMLFastContextHandlerXNote : public OOXMLFastContextHandlerProperties
{
public:
explicit OOXMLFastContextHandlerXNote(OOXMLFastContextHandler * pContext);
- virtual ~OOXMLFastContextHandlerXNote();
+ virtual ~OOXMLFastContextHandlerXNote() override;
void checkId(const OOXMLValue::Pointer_t& pValue);
@@ -388,7 +388,7 @@ class OOXMLFastContextHandlerTextTableCell : public OOXMLFastContextHandler
{
public:
explicit OOXMLFastContextHandlerTextTableCell(OOXMLFastContextHandler * pContext);
- virtual ~OOXMLFastContextHandlerTextTableCell();
+ virtual ~OOXMLFastContextHandlerTextTableCell() override;
virtual std::string getType() const override { return "TextTableCell"; }
@@ -400,7 +400,7 @@ class OOXMLFastContextHandlerTextTableRow : public OOXMLFastContextHandler
{
public:
explicit OOXMLFastContextHandlerTextTableRow(OOXMLFastContextHandler * pContext);
- virtual ~OOXMLFastContextHandlerTextTableRow();
+ virtual ~OOXMLFastContextHandlerTextTableRow() override;
virtual std::string getType() const override { return "TextTableRow"; }
@@ -417,7 +417,7 @@ class OOXMLFastContextHandlerTextTable : public OOXMLFastContextHandler
public:
explicit OOXMLFastContextHandlerTextTable(OOXMLFastContextHandler * pContext);
- virtual ~OOXMLFastContextHandlerTextTable();
+ virtual ~OOXMLFastContextHandlerTextTable() override;
virtual std::string getType() const override { return "TextTable"; }
@@ -437,7 +437,7 @@ private:
public:
explicit OOXMLFastContextHandlerShape(OOXMLFastContextHandler * pContext);
- virtual ~OOXMLFastContextHandlerShape();
+ virtual ~OOXMLFastContextHandlerShape() override;
virtual std::string getType() const override { return "Shape"; }
@@ -486,7 +486,7 @@ class OOXMLFastContextHandlerWrapper : public OOXMLFastContextHandler
{
public:
explicit OOXMLFastContextHandlerWrapper(OOXMLFastContextHandler * pParent, css::uno::Reference<css::xml::sax::XFastContextHandler> const & xContext);
- virtual ~OOXMLFastContextHandlerWrapper();
+ virtual ~OOXMLFastContextHandlerWrapper() override;
// css::xml::sax::XFastContextHandler:
virtual void SAL_CALL startUnknownElement(const OUString & Namespace, const OUString & Name, const css::uno::Reference< css::xml::sax::XFastAttributeList > & Attribs)
diff --git a/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx b/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx
index 5cfdc3679724..a473c55b31d7 100644
--- a/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx
+++ b/writerfilter/source/ooxml/OOXMLFastDocumentHandler.hxx
@@ -42,7 +42,7 @@ public:
Stream* pStream,
OOXMLDocumentImpl* pDocument,
sal_Int32 nXNoteId );
- virtual ~OOXMLFastDocumentHandler();
+ virtual ~OOXMLFastDocumentHandler() override;
// css::xml::sax::XFastDocumentHandler:
virtual void SAL_CALL startDocument()
diff --git a/writerfilter/source/ooxml/OOXMLPropertySet.hxx b/writerfilter/source/ooxml/OOXMLPropertySet.hxx
index 8cc37729a096..8aa7c92a4ee3 100644
--- a/writerfilter/source/ooxml/OOXMLPropertySet.hxx
+++ b/writerfilter/source/ooxml/OOXMLPropertySet.hxx
@@ -33,7 +33,7 @@ class OOXMLValue : public Value
public:
typedef std::shared_ptr<OOXMLValue> Pointer_t;
OOXMLValue();
- virtual ~OOXMLValue();
+ virtual ~OOXMLValue() override;
virtual int getInt() const override;
;
@@ -78,7 +78,7 @@ protected:
mutable OOXMLBinaryObjectReference::Pointer_t mpBinaryObj;
public:
explicit OOXMLBinaryValue(OOXMLBinaryObjectReference::Pointer_t const & pBinaryObj);
- virtual ~OOXMLBinaryValue();
+ virtual ~OOXMLBinaryValue() override;
virtual writerfilter::Reference<BinaryObj>::Pointer_t getBinary() override;
#ifdef DEBUG_WRITERFILTER
@@ -96,7 +96,7 @@ public:
static OOXMLValue::Pointer_t const & Create (bool bValue);
static OOXMLValue::Pointer_t Create (const char *pValue);
- virtual ~OOXMLBooleanValue();
+ virtual ~OOXMLBooleanValue() override;
virtual int getInt() const override;
virtual css::uno::Any getAny() const override;
@@ -112,7 +112,7 @@ protected:
OUString mStr;
public:
explicit OOXMLStringValue(const OUString & rStr);
- virtual ~OOXMLStringValue();
+ virtual ~OOXMLStringValue() override;
virtual css::uno::Any getAny() const override;
virtual OUString getString() const override;
@@ -129,7 +129,7 @@ protected:
public:
explicit OOXMLInputStreamValue(css::uno::Reference<css::io::XInputStream> const & xInputStream);
- virtual ~OOXMLInputStreamValue();
+ virtual ~OOXMLInputStreamValue() override;
virtual css::uno::Any getAny() const override;
#ifdef DEBUG_WRITERFILTER
@@ -187,7 +187,7 @@ class OOXMLPropertySetValue : public OOXMLValue
OOXMLPropertySet::Pointer_t mpPropertySet;
public:
explicit OOXMLPropertySetValue(const OOXMLPropertySet::Pointer_t& pPropertySet);
- virtual ~OOXMLPropertySetValue();
+ virtual ~OOXMLPropertySetValue() override;
virtual writerfilter::Reference<Properties>::Pointer_t getProperties() override;
#ifdef DEBUG_WRITERFILTER
@@ -203,7 +203,7 @@ protected:
explicit OOXMLIntegerValue(sal_Int32 nValue);
public:
static OOXMLValue::Pointer_t Create (sal_Int32 nValue);
- virtual ~OOXMLIntegerValue();
+ virtual ~OOXMLIntegerValue() override;
virtual int getInt() const override;
virtual css::uno::Any getAny() const override;
@@ -220,7 +220,7 @@ protected:
public:
explicit OOXMLHexValue(sal_uInt32 nValue);
explicit OOXMLHexValue(const char * pValue);
- virtual ~OOXMLHexValue();
+ virtual ~OOXMLHexValue() override;
virtual int getInt() const override;
#ifdef DEBUG_WRITERFILTER
@@ -236,7 +236,7 @@ protected:
sal_uInt32 mnValue;
public:
explicit OOXMLUniversalMeasureValue(const char * pValue);
- virtual ~OOXMLUniversalMeasureValue();
+ virtual ~OOXMLUniversalMeasureValue() override;
virtual int getInt() const override;
#ifdef DEBUG_WRITERFILTER
@@ -251,7 +251,7 @@ protected:
css::uno::Reference<css::drawing::XShape> mrShape;
public:
explicit OOXMLShapeValue(css::uno::Reference<css::drawing::XShape> const & rShape);
- virtual ~OOXMLShapeValue();
+ virtual ~OOXMLShapeValue() override;
virtual css::uno::Any getAny() const override;
#ifdef DEBUG_WRITERFILTER
@@ -266,7 +266,7 @@ protected:
css::uno::Reference< css::embed::XEmbeddedObject > component;
public:
explicit OOXMLStarMathValue( css::uno::Reference< css::embed::XEmbeddedObject > const & component );
- virtual ~OOXMLStarMathValue();
+ virtual ~OOXMLStarMathValue() override;
virtual css::uno::Any getAny() const override;
#ifdef DEBUG_WRITERFILTER
diff --git a/writerfilter/source/ooxml/OOXMLStreamImpl.hxx b/writerfilter/source/ooxml/OOXMLStreamImpl.hxx
index 6a1b1b48ab0c..aff8189b7396 100644
--- a/writerfilter/source/ooxml/OOXMLStreamImpl.hxx
+++ b/writerfilter/source/ooxml/OOXMLStreamImpl.hxx
@@ -68,7 +68,7 @@ public:
StreamType_t nType, bool bRepairStorage);
OOXMLStreamImpl(OOXMLStreamImpl & rStream, const OUString & rId);
- virtual ~OOXMLStreamImpl();
+ virtual ~OOXMLStreamImpl() override;
virtual css::uno::Reference<css::xml::sax::XFastParser> getFastParser() override;
virtual css::uno::Reference<css::io::XInputStream> getDocumentStream() override;