summaryrefslogtreecommitdiff
path: root/oox/source
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source')
-rw-r--r--oox/source/docprop/docprophandler.hxx2
-rw-r--r--oox/source/drawingml/chart/plotareaconverter.cxx2
-rw-r--r--oox/source/drawingml/customshapegeometry.cxx2
-rw-r--r--oox/source/drawingml/diagram/constraintlistcontext.hxx2
-rw-r--r--oox/source/drawingml/diagram/datamodelcontext.hxx2
-rw-r--r--oox/source/drawingml/diagram/diagramdefinitioncontext.hxx2
-rw-r--r--oox/source/drawingml/diagram/diagramfragmenthandler.hxx4
-rw-r--r--oox/source/drawingml/diagram/diagramlayoutatoms.hxx12
-rw-r--r--oox/source/drawingml/diagram/layoutnodecontext.cxx2
-rw-r--r--oox/source/drawingml/diagram/layoutnodecontext.hxx2
-rw-r--r--oox/source/drawingml/effectpropertiescontext.hxx2
-rw-r--r--oox/source/drawingml/hyperlinkcontext.hxx2
-rw-r--r--oox/source/drawingml/texttabstoplistcontext.hxx2
-rw-r--r--oox/source/export/ColorPropertySet.hxx2
-rw-r--r--oox/source/ole/olestorage.cxx2
-rw-r--r--oox/source/ppt/animvariantcontext.hxx2
-rw-r--r--oox/source/ppt/buildlistcontext.hxx2
-rw-r--r--oox/source/ppt/commonbehaviorcontext.hxx2
-rw-r--r--oox/source/ppt/commontimenodecontext.hxx2
-rw-r--r--oox/source/ppt/conditioncontext.hxx4
-rw-r--r--oox/source/ppt/customshowlistcontext.cxx2
-rw-r--r--oox/source/ppt/extdrawingfragmenthandler.hxx2
-rw-r--r--oox/source/ppt/headerfootercontext.hxx2
-rw-r--r--oox/source/ppt/timeanimvaluecontext.hxx2
-rw-r--r--oox/source/ppt/timenodelistcontext.cxx18
-rw-r--r--oox/source/ppt/timetargetelementcontext.hxx2
-rw-r--r--oox/source/shape/LockedCanvasContext.hxx2
-rw-r--r--oox/source/shape/ShapeContextHandler.hxx2
-rw-r--r--oox/source/shape/ShapeDrawingFragmentHandler.hxx2
-rw-r--r--oox/source/shape/ShapeFilterBase.hxx2
-rw-r--r--oox/source/shape/WpgContext.hxx2
-rw-r--r--oox/source/shape/WpsContext.hxx2
32 files changed, 47 insertions, 47 deletions
diff --git a/oox/source/docprop/docprophandler.hxx b/oox/source/docprop/docprophandler.hxx
index 4dd42614bf01..4bd4577a1503 100644
--- a/oox/source/docprop/docprophandler.hxx
+++ b/oox/source/docprop/docprophandler.hxx
@@ -55,7 +55,7 @@ class OOXMLDocPropHandler : public ::cppu::WeakImplHelper< css::xml::sax::XFastD
public:
explicit OOXMLDocPropHandler( const css::uno::Reference< css::uno::XComponentContext >& xContext, const css::uno::Reference< css::document::XDocumentProperties >& rDocProp );
- virtual ~OOXMLDocPropHandler();
+ virtual ~OOXMLDocPropHandler() override;
void InitNew();
void AddCustomProperty( const css::uno::Any& aAny );
diff --git a/oox/source/drawingml/chart/plotareaconverter.cxx b/oox/source/drawingml/chart/plotareaconverter.cxx
index b7796db7445a..71477a92af8a 100644
--- a/oox/source/drawingml/chart/plotareaconverter.cxx
+++ b/oox/source/drawingml/chart/plotareaconverter.cxx
@@ -65,7 +65,7 @@ class AxesSetConverter : public ConverterBase< AxesSetModel >
{
public:
explicit AxesSetConverter( const ConverterRoot& rParent, AxesSetModel& rModel );
- virtual ~AxesSetConverter();
+ virtual ~AxesSetConverter() override;
/** Converts the axes set model to a chart2 diagram. Returns an automatic
chart title from a single series title, if possible. */
diff --git a/oox/source/drawingml/customshapegeometry.cxx b/oox/source/drawingml/customshapegeometry.cxx
index a490533917f9..3ee61c28c87c 100644
--- a/oox/source/drawingml/customshapegeometry.cxx
+++ b/oox/source/drawingml/customshapegeometry.cxx
@@ -928,7 +928,7 @@ class Path2DContext : public ContextHandler2
{
public:
Path2DContext( ContextHandler2Helper& rParent, const AttributeList& rAttribs, CustomShapeProperties& rCustomShapeProperties, std::vector< css::drawing::EnhancedCustomShapeSegment >& rSegments, Path2D& rPath2D );
- virtual ~Path2DContext();
+ virtual ~Path2DContext() override;
virtual ::oox::core::ContextHandlerRef
onCreateContext( sal_Int32 aElementToken, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/source/drawingml/diagram/constraintlistcontext.hxx b/oox/source/drawingml/diagram/constraintlistcontext.hxx
index 93ceeaf08eaa..730cd2d88a30 100644
--- a/oox/source/drawingml/diagram/constraintlistcontext.hxx
+++ b/oox/source/drawingml/diagram/constraintlistcontext.hxx
@@ -30,7 +30,7 @@ class ConstraintListContext : public ::oox::core::ContextHandler2
{
public:
ConstraintListContext( ContextHandler2Helper& rParent, const AttributeList& rAttributes, const LayoutAtomPtr &pNode );
- virtual ~ConstraintListContext();
+ virtual ~ConstraintListContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const AttributeList& rAttribs ) override;
private:
diff --git a/oox/source/drawingml/diagram/datamodelcontext.hxx b/oox/source/drawingml/diagram/datamodelcontext.hxx
index c2fa95026a7d..2642be374e40 100644
--- a/oox/source/drawingml/diagram/datamodelcontext.hxx
+++ b/oox/source/drawingml/diagram/datamodelcontext.hxx
@@ -32,7 +32,7 @@ class DataModelContext : public ::oox::core::ContextHandler2
{
public:
DataModelContext( ::oox::core::ContextHandler2Helper& rParent, const DiagramDataPtr & pDataModelPtr );
- virtual ~DataModelContext();
+ virtual ~DataModelContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/source/drawingml/diagram/diagramdefinitioncontext.hxx b/oox/source/drawingml/diagram/diagramdefinitioncontext.hxx
index af2a0d98aa60..9f5161b2f769 100644
--- a/oox/source/drawingml/diagram/diagramdefinitioncontext.hxx
+++ b/oox/source/drawingml/diagram/diagramdefinitioncontext.hxx
@@ -29,7 +29,7 @@ class DiagramDefinitionContext : public ::oox::core::ContextHandler2
{
public:
DiagramDefinitionContext( ::oox::core::ContextHandler2Helper& rParent, const ::oox::AttributeList& rAttributes, const DiagramLayoutPtr &pLayout );
- virtual ~DiagramDefinitionContext();
+ virtual ~DiagramDefinitionContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/source/drawingml/diagram/diagramfragmenthandler.hxx b/oox/source/drawingml/diagram/diagramfragmenthandler.hxx
index 7b54b4fe4b3d..5e851f6424c6 100644
--- a/oox/source/drawingml/diagram/diagramfragmenthandler.hxx
+++ b/oox/source/drawingml/diagram/diagramfragmenthandler.hxx
@@ -29,7 +29,7 @@ class DiagramDataFragmentHandler : public ::oox::core::FragmentHandler2
{
public:
DiagramDataFragmentHandler( oox::core::XmlFilterBase& rFilter, const OUString& rFragmentPath, const DiagramDataPtr& rDataPtr ) throw();
- virtual ~DiagramDataFragmentHandler() throw();
+ virtual ~DiagramDataFragmentHandler() throw() override;
virtual void SAL_CALL endDocument() throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
@@ -43,7 +43,7 @@ class DiagramLayoutFragmentHandler : public ::oox::core::FragmentHandler2
{
public:
DiagramLayoutFragmentHandler( oox::core::XmlFilterBase& rFilter, const OUString& rFragmentPath, const DiagramLayoutPtr& rDataPtr ) throw();
- virtual ~DiagramLayoutFragmentHandler() throw();
+ virtual ~DiagramLayoutFragmentHandler() throw() override;
virtual void SAL_CALL endDocument() throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/source/drawingml/diagram/diagramlayoutatoms.hxx b/oox/source/drawingml/diagram/diagramlayoutatoms.hxx
index 6153e9cb0957..8601424b4aee 100644
--- a/oox/source/drawingml/diagram/diagramlayoutatoms.hxx
+++ b/oox/source/drawingml/diagram/diagramlayoutatoms.hxx
@@ -105,7 +105,7 @@ public:
mnRefType(-1), mnRefPointType(-1), mfFactor(1.0), mfValue(0.0), mnOperator(0)
{}
- virtual ~ConstraintAtom() { }
+ virtual ~ConstraintAtom() override { }
virtual void accept( LayoutAtomVisitor& ) override;
@@ -151,7 +151,7 @@ class AlgAtom
public:
AlgAtom() : mnType(0), maMap() {}
- virtual ~AlgAtom() { }
+ virtual ~AlgAtom() override { }
typedef std::map<sal_Int32,sal_Int32> ParamMap;
@@ -177,7 +177,7 @@ class ForEachAtom
public:
explicit ForEachAtom(const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttributes);
- virtual ~ForEachAtom() { }
+ virtual ~ForEachAtom() override { }
IteratorAttr & iterator()
{ return maIter; }
@@ -194,7 +194,7 @@ class ConditionAtom
{
public:
explicit ConditionAtom(const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttributes);
- virtual ~ConditionAtom()
+ virtual ~ConditionAtom() override
{ }
virtual void accept( LayoutAtomVisitor& ) override;
void readElseBranch()
@@ -215,7 +215,7 @@ class ChooseAtom
: public LayoutAtom
{
public:
- virtual ~ChooseAtom()
+ virtual ~ChooseAtom() override
{ }
virtual void accept( LayoutAtomVisitor& ) override;
};
@@ -240,7 +240,7 @@ public:
typedef std::array<css::uno::Any, 9> VarMap;
LayoutNode() : mnChildOrder(0) {}
- virtual ~LayoutNode() { }
+ virtual ~LayoutNode() override { }
virtual void accept( LayoutAtomVisitor& ) override;
VarMap & variables()
{ return mVariables; }
diff --git a/oox/source/drawingml/diagram/layoutnodecontext.cxx b/oox/source/drawingml/diagram/layoutnodecontext.cxx
index d381b68511b6..9bb90a8d069c 100644
--- a/oox/source/drawingml/diagram/layoutnodecontext.cxx
+++ b/oox/source/drawingml/diagram/layoutnodecontext.cxx
@@ -158,7 +158,7 @@ public:
{
}
- virtual ~LayoutVariablePropertySetContext()
+ virtual ~LayoutVariablePropertySetContext() override
{
}
diff --git a/oox/source/drawingml/diagram/layoutnodecontext.hxx b/oox/source/drawingml/diagram/layoutnodecontext.hxx
index 7559af0abbbb..a98c86713b21 100644
--- a/oox/source/drawingml/diagram/layoutnodecontext.hxx
+++ b/oox/source/drawingml/diagram/layoutnodecontext.hxx
@@ -30,7 +30,7 @@ class LayoutNodeContext : public ::oox::core::ContextHandler2
{
public:
LayoutNodeContext( ::oox::core::ContextHandler2Helper& rParent, const ::oox::AttributeList& rAttributes, const LayoutAtomPtr &pNode );
- virtual ~LayoutNodeContext();
+ virtual ~LayoutNodeContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/source/drawingml/effectpropertiescontext.hxx b/oox/source/drawingml/effectpropertiescontext.hxx
index 9e0ec3fa4582..4482db6fe0de 100644
--- a/oox/source/drawingml/effectpropertiescontext.hxx
+++ b/oox/source/drawingml/effectpropertiescontext.hxx
@@ -22,7 +22,7 @@ class EffectPropertiesContext : public ::oox::core::ContextHandler2
public:
EffectPropertiesContext( ::oox::core::ContextHandler2Helper& rParent,
EffectProperties& rEffectProperties ) throw();
- virtual ~EffectPropertiesContext();
+ virtual ~EffectPropertiesContext() override;
virtual ::oox::core::ContextHandlerRef
onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/source/drawingml/hyperlinkcontext.hxx b/oox/source/drawingml/hyperlinkcontext.hxx
index f886a7cca959..8e1ae9aebef5 100644
--- a/oox/source/drawingml/hyperlinkcontext.hxx
+++ b/oox/source/drawingml/hyperlinkcontext.hxx
@@ -35,7 +35,7 @@ public:
::oox::core::ContextHandler2Helper& rParent,
const ::oox::AttributeList& rAttribs,
PropertyMap& aProperties );
- virtual ~HyperLinkContext();
+ virtual ~HyperLinkContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/source/drawingml/texttabstoplistcontext.hxx b/oox/source/drawingml/texttabstoplistcontext.hxx
index cbec67799bc1..72e5474bfee9 100644
--- a/oox/source/drawingml/texttabstoplistcontext.hxx
+++ b/oox/source/drawingml/texttabstoplistcontext.hxx
@@ -33,7 +33,7 @@ namespace oox { namespace drawingml {
public:
TextTabStopListContext( ::oox::core::ContextHandler2Helper& rParent,
::std::list< css::style::TabStop > & aTabList );
- virtual ~TextTabStopListContext();
+ virtual ~TextTabStopListContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override;
diff --git a/oox/source/export/ColorPropertySet.hxx b/oox/source/export/ColorPropertySet.hxx
index 11d73a8589c0..88fc20d3c286 100644
--- a/oox/source/export/ColorPropertySet.hxx
+++ b/oox/source/export/ColorPropertySet.hxx
@@ -39,7 +39,7 @@ class ColorPropertySet : public ::cppu::WeakImplHelper<
public:
// if bFillColor == false, the color is a LineColor
explicit ColorPropertySet( sal_Int32 nColor, bool bFillColor = true );
- virtual ~ColorPropertySet();
+ virtual ~ColorPropertySet() override;
protected:
// ____ XPropertySet ____
diff --git a/oox/source/ole/olestorage.cxx b/oox/source/ole/olestorage.cxx
index 68935f944e6e..19c665f11dc8 100644
--- a/oox/source/ole/olestorage.cxx
+++ b/oox/source/ole/olestorage.cxx
@@ -58,7 +58,7 @@ public:
const Reference< XComponentContext >& rxContext,
const Reference< XNameContainer >& rxStorage,
const OUString& rElementName );
- virtual ~OleOutputStream();
+ virtual ~OleOutputStream() override;
virtual void SAL_CALL seek( sal_Int64 nPos ) throw( IllegalArgumentException, IOException, RuntimeException, std::exception ) override;
virtual sal_Int64 SAL_CALL getPosition() throw( IOException, RuntimeException, std::exception ) override;
diff --git a/oox/source/ppt/animvariantcontext.hxx b/oox/source/ppt/animvariantcontext.hxx
index 278e4255b2b2..4ab209180230 100644
--- a/oox/source/ppt/animvariantcontext.hxx
+++ b/oox/source/ppt/animvariantcontext.hxx
@@ -33,7 +33,7 @@ namespace oox { namespace ppt {
{
public:
AnimVariantContext( ::oox::core::FragmentHandler2& rParent, ::sal_Int32 aElement, css::uno::Any & aValue );
- virtual ~AnimVariantContext( ) throw( );
+ virtual ~AnimVariantContext( ) throw( ) override;
virtual void onEndElement() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
diff --git a/oox/source/ppt/buildlistcontext.hxx b/oox/source/ppt/buildlistcontext.hxx
index 84ec8e97c879..5fbf5f2b6618 100644
--- a/oox/source/ppt/buildlistcontext.hxx
+++ b/oox/source/ppt/buildlistcontext.hxx
@@ -31,7 +31,7 @@ namespace oox { namespace ppt {
public:
explicit BuildListContext( ::oox::core::FragmentHandler2& rParent );
- virtual ~BuildListContext( );
+ virtual ~BuildListContext( ) override;
virtual void onEndElement() override;
diff --git a/oox/source/ppt/commonbehaviorcontext.hxx b/oox/source/ppt/commonbehaviorcontext.hxx
index dbe070118d59..4d396050a517 100644
--- a/oox/source/ppt/commonbehaviorcontext.hxx
+++ b/oox/source/ppt/commonbehaviorcontext.hxx
@@ -43,7 +43,7 @@ namespace oox { namespace ppt {
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttribs,
const TimeNodePtr & pNode );
virtual ~CommonBehaviorContext( )
- throw( );
+ throw( ) override;
virtual void onEndElement() override;
diff --git a/oox/source/ppt/commontimenodecontext.hxx b/oox/source/ppt/commontimenodecontext.hxx
index f5109efe2ce4..1dd2687a674b 100644
--- a/oox/source/ppt/commontimenodecontext.hxx
+++ b/oox/source/ppt/commontimenodecontext.hxx
@@ -33,7 +33,7 @@ namespace oox { namespace ppt {
{
public:
CommonTimeNodeContext( ::oox::core::FragmentHandler2& rParent, sal_Int32 aElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttribs, const TimeNodePtr & pNode);
- virtual ~CommonTimeNodeContext( ) throw( );
+ virtual ~CommonTimeNodeContext( ) throw( ) override;
virtual void onEndElement() override;
diff --git a/oox/source/ppt/conditioncontext.hxx b/oox/source/ppt/conditioncontext.hxx
index 6ec307f1fb29..726191dba526 100644
--- a/oox/source/ppt/conditioncontext.hxx
+++ b/oox/source/ppt/conditioncontext.hxx
@@ -37,7 +37,7 @@ namespace oox { namespace ppt {
CondContext( ::oox::core::FragmentHandler2& rParent,
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttribs,
const TimeNodePtr & pNode, AnimationCondition & aCond );
- virtual ~CondContext( ) throw( );
+ virtual ~CondContext( ) throw( ) override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
private:
@@ -54,7 +54,7 @@ namespace oox { namespace ppt {
sal_Int32 aElement,
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttribs,
const TimeNodePtr & pNode, AnimationConditionList & aCondList );
- virtual ~CondListContext( ) throw( );
+ virtual ~CondListContext( ) throw( ) override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
diff --git a/oox/source/ppt/customshowlistcontext.cxx b/oox/source/ppt/customshowlistcontext.cxx
index e5957c410671..e8839abb5b61 100644
--- a/oox/source/ppt/customshowlistcontext.cxx
+++ b/oox/source/ppt/customshowlistcontext.cxx
@@ -37,7 +37,7 @@ public:
CustomShowContext( ::oox::core::FragmentHandler2& rParent,
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttribs,
CustomShow& rCustomShow );
- virtual ~CustomShowContext( );
+ virtual ~CustomShowContext( ) override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
};
diff --git a/oox/source/ppt/extdrawingfragmenthandler.hxx b/oox/source/ppt/extdrawingfragmenthandler.hxx
index f8084971369f..f799a1bad158 100644
--- a/oox/source/ppt/extdrawingfragmenthandler.hxx
+++ b/oox/source/ppt/extdrawingfragmenthandler.hxx
@@ -26,7 +26,7 @@ public:
const oox::ppt::ShapeLocation eShapeLocation,
oox::drawingml::ShapePtr const & pGroupShapePtr,
oox::drawingml::ShapePtr const & pShapePtr ) throw();
- virtual ~ExtDrawingFragmentHandler() throw();
+ virtual ~ExtDrawingFragmentHandler() throw() override;
virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const AttributeList& rAttribs ) override;
diff --git a/oox/source/ppt/headerfootercontext.hxx b/oox/source/ppt/headerfootercontext.hxx
index 7be60f09fe89..89ab5b9d79a7 100644
--- a/oox/source/ppt/headerfootercontext.hxx
+++ b/oox/source/ppt/headerfootercontext.hxx
@@ -32,7 +32,7 @@ namespace oox { namespace ppt {
HeaderFooterContext( ::oox::core::FragmentHandler2& rParent,
const AttributeList& rAttribs, HeaderFooter& rHeaderFooter );
- virtual ~HeaderFooterContext( );
+ virtual ~HeaderFooterContext( ) override;
};
} }
diff --git a/oox/source/ppt/timeanimvaluecontext.hxx b/oox/source/ppt/timeanimvaluecontext.hxx
index add8fe040f84..2562393e71d7 100644
--- a/oox/source/ppt/timeanimvaluecontext.hxx
+++ b/oox/source/ppt/timeanimvaluecontext.hxx
@@ -34,7 +34,7 @@ namespace oox { namespace ppt {
const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttribs,
TimeAnimationValueList & aTavList );
- virtual ~TimeAnimValueListContext( );
+ virtual ~TimeAnimValueListContext( ) override;
virtual void onEndElement() override;
diff --git a/oox/source/ppt/timenodelistcontext.cxx b/oox/source/ppt/timenodelistcontext.cxx
index 5efc6c7ed8ec..e795b6e8b129 100644
--- a/oox/source/ppt/timenodelistcontext.cxx
+++ b/oox/source/ppt/timenodelistcontext.cxx
@@ -179,7 +179,7 @@ namespace oox { namespace ppt {
}
- virtual ~SetTimeNodeContext() throw ()
+ virtual ~SetTimeNodeContext() throw () override
{
if( maTo.hasValue() )
{
@@ -240,7 +240,7 @@ namespace oox { namespace ppt {
}
}
- virtual ~CmdTimeNodeContext() throw ()
+ virtual ~CmdTimeNodeContext() throw () override
{
}
@@ -353,7 +353,7 @@ namespace oox { namespace ppt {
mnPrevAc = xAttribs->getOptionalValueToken( XML_prevAc, 0 );
}
- virtual ~SequenceTimeNodeContext() throw()
+ virtual ~SequenceTimeNodeContext() throw() override
{
}
@@ -426,7 +426,7 @@ namespace oox { namespace ppt {
, m_byColor( AnimationColorSpace::RGB, 0, 0, 0)
{
}
- virtual ~AnimColorContext() throw()
+ virtual ~AnimColorContext() throw() override
{
}
@@ -555,7 +555,7 @@ namespace oox { namespace ppt {
mnValueType = xAttribs->getOptionalValueToken( XML_valueType, 0 );
}
- virtual ~AnimContext() throw ()
+ virtual ~AnimContext() throw () override
{
::std::list< TimeAnimationValue >::iterator iter, end;
int nKeyTimes = maTavList.size();
@@ -627,7 +627,7 @@ namespace oox { namespace ppt {
= makeAny((sal_Int16)AnimationTransformType::SCALE);
}
- virtual ~AnimScaleContext( ) throw( )
+ virtual ~AnimScaleContext( ) throw( ) override
{
}
@@ -726,7 +726,7 @@ namespace oox { namespace ppt {
}
}
- virtual ~AnimRotContext( ) throw( )
+ virtual ~AnimRotContext( ) throw( ) override
{
}
@@ -783,7 +783,7 @@ namespace oox { namespace ppt {
// TODO make sure the units are right. Likely not.
}
- virtual ~AnimMotionContext( ) throw()
+ virtual ~AnimMotionContext( ) throw() override
{
}
@@ -866,7 +866,7 @@ namespace oox { namespace ppt {
}
}
- virtual ~AnimEffectContext( ) throw()
+ virtual ~AnimEffectContext( ) throw() override
{
}
diff --git a/oox/source/ppt/timetargetelementcontext.hxx b/oox/source/ppt/timetargetelementcontext.hxx
index f5e4a65e5517..c51a6d8207a8 100644
--- a/oox/source/ppt/timetargetelementcontext.hxx
+++ b/oox/source/ppt/timetargetelementcontext.hxx
@@ -31,7 +31,7 @@ namespace oox { namespace ppt {
{
public:
TimeTargetElementContext( ::oox::core::FragmentHandler2& rParent, const AnimTargetElementPtr & aValue );
- virtual ~TimeTargetElementContext( ) throw( );
+ virtual ~TimeTargetElementContext( ) throw( ) override;
virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs ) override;
private:
diff --git a/oox/source/shape/LockedCanvasContext.hxx b/oox/source/shape/LockedCanvasContext.hxx
index 21dc10f3f804..ca7ac4ade8d1 100644
--- a/oox/source/shape/LockedCanvasContext.hxx
+++ b/oox/source/shape/LockedCanvasContext.hxx
@@ -23,7 +23,7 @@ class LockedCanvasContext : public oox::core::ContextHandler2
{
public:
explicit LockedCanvasContext(oox::core::ContextHandler2Helper& rParent);
- virtual ~LockedCanvasContext();
+ virtual ~LockedCanvasContext() override;
virtual ::oox::core::ContextHandlerRef onCreateContext(sal_Int32 Element, const ::oox::AttributeList& rAttribs) override;
diff --git a/oox/source/shape/ShapeContextHandler.hxx b/oox/source/shape/ShapeContextHandler.hxx
index 103a8106bd08..c594288d4d80 100644
--- a/oox/source/shape/ShapeContextHandler.hxx
+++ b/oox/source/shape/ShapeContextHandler.hxx
@@ -54,7 +54,7 @@ public:
explicit ShapeContextHandler
(css::uno::Reference< css::uno::XComponentContext > const & context);
- virtual ~ShapeContextHandler();
+ virtual ~ShapeContextHandler() override;
// css::lang::XServiceInfo:
virtual OUString SAL_CALL getImplementationName()
diff --git a/oox/source/shape/ShapeDrawingFragmentHandler.hxx b/oox/source/shape/ShapeDrawingFragmentHandler.hxx
index a14dcac6f40a..b4e202b15694 100644
--- a/oox/source/shape/ShapeDrawingFragmentHandler.hxx
+++ b/oox/source/shape/ShapeDrawingFragmentHandler.hxx
@@ -20,7 +20,7 @@ class ShapeDrawingFragmentHandler : public oox::core::FragmentHandler2
{
public:
ShapeDrawingFragmentHandler( oox::core::XmlFilterBase& rFilter, const OUString& rFragmentPath, oox::drawingml::ShapePtr const & pGroupShapePtr ) throw();
- virtual ~ShapeDrawingFragmentHandler() throw();
+ virtual ~ShapeDrawingFragmentHandler() throw() override;
virtual void SAL_CALL endDocument() throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override;
virtual ::oox::core::ContextHandlerRef onCreateContext(sal_Int32 Element, const AttributeList& rAttribs ) override;
diff --git a/oox/source/shape/ShapeFilterBase.hxx b/oox/source/shape/ShapeFilterBase.hxx
index a99c90c239ba..94d760992661 100644
--- a/oox/source/shape/ShapeFilterBase.hxx
+++ b/oox/source/shape/ShapeFilterBase.hxx
@@ -39,7 +39,7 @@ public:
const css::uno::Reference< css::uno::XComponentContext >& rxContext )
throw( css::uno::RuntimeException );
- virtual ~ShapeFilterBase();
+ virtual ~ShapeFilterBase() override;
/** Has to be implemented by each filter, returns the current theme. */
virtual const ::oox::drawingml::Theme* getCurrentTheme() const override;
diff --git a/oox/source/shape/WpgContext.hxx b/oox/source/shape/WpgContext.hxx
index a212bef255cd..6144ce427755 100644
--- a/oox/source/shape/WpgContext.hxx
+++ b/oox/source/shape/WpgContext.hxx
@@ -23,7 +23,7 @@ class WpgContext : public oox::core::ContextHandler2
{
public:
explicit WpgContext(oox::core::ContextHandler2Helper& rParent);
- virtual ~WpgContext();
+ virtual ~WpgContext() override;
virtual oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElementToken, const oox::AttributeList& rAttribs) override;
diff --git a/oox/source/shape/WpsContext.hxx b/oox/source/shape/WpsContext.hxx
index 799b2117e972..03091c738132 100644
--- a/oox/source/shape/WpsContext.hxx
+++ b/oox/source/shape/WpsContext.hxx
@@ -23,7 +23,7 @@ class WpsContext : public oox::core::ContextHandler2
{
public:
WpsContext(oox::core::ContextHandler2Helper& rParent, css::uno::Reference<css::drawing::XShape> const& xShape);
- virtual ~WpsContext();
+ virtual ~WpsContext() override;
virtual oox::core::ContextHandlerRef onCreateContext(sal_Int32 nElementToken, const oox::AttributeList& rAttribs) override;