diff options
-rw-r--r-- | include/oox/ppt/slidetransitioncontext.hxx | 2 | ||||
-rw-r--r-- | oox/inc/drawingml/transform2dcontext.hxx | 2 | ||||
-rw-r--r-- | oox/source/drawingml/transform2dcontext.cxx | 2 | ||||
-rw-r--r-- | oox/source/ppt/slidetransitioncontext.cxx | 2 | ||||
-rw-r--r-- | oox/source/ppt/timenodelistcontext.cxx | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/include/oox/ppt/slidetransitioncontext.hxx b/include/oox/ppt/slidetransitioncontext.hxx index f28b763c6b0d..066a671398ee 100644 --- a/include/oox/ppt/slidetransitioncontext.hxx +++ b/include/oox/ppt/slidetransitioncontext.hxx @@ -37,7 +37,7 @@ namespace oox::ppt { public: SlideTransitionContext( ::oox::core::FragmentHandler2 const & rParent, const AttributeList& rAttributes, - PropertyMap & aProperties ) noexcept; + PropertyMap & aProperties ); virtual ~SlideTransitionContext() noexcept override; virtual void onEndElement() override; diff --git a/oox/inc/drawingml/transform2dcontext.hxx b/oox/inc/drawingml/transform2dcontext.hxx index f54b0249380d..984ce0ed18cb 100644 --- a/oox/inc/drawingml/transform2dcontext.hxx +++ b/oox/inc/drawingml/transform2dcontext.hxx @@ -31,7 +31,7 @@ class Transform2DContext final : public ::oox::core::ContextHandler2 { public: Transform2DContext( ::oox::core::ContextHandler2Helper const & rParent, - const ::oox::AttributeList& rAttributes, Shape& rShape, bool btxXfrm = false ) noexcept; + const ::oox::AttributeList& rAttributes, Shape& rShape, bool btxXfrm = false ); virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; private: diff --git a/oox/source/drawingml/transform2dcontext.cxx b/oox/source/drawingml/transform2dcontext.cxx index df54fe98b71e..b73e3d7c8a62 100644 --- a/oox/source/drawingml/transform2dcontext.cxx +++ b/oox/source/drawingml/transform2dcontext.cxx @@ -30,7 +30,7 @@ using ::oox::core::ContextHandlerRef; namespace oox::drawingml { /** context to import a CT_Transform2D */ -Transform2DContext::Transform2DContext( ContextHandler2Helper const & rParent, const AttributeList& rAttribs, Shape& rShape, bool btxXfrm ) noexcept +Transform2DContext::Transform2DContext( ContextHandler2Helper const & rParent, const AttributeList& rAttribs, Shape& rShape, bool btxXfrm ) : ContextHandler2( rParent ) , mrShape( rShape ) , mbtxXfrm ( btxXfrm ) diff --git a/oox/source/ppt/slidetransitioncontext.cxx b/oox/source/ppt/slidetransitioncontext.cxx index 8ec8e0fd82a0..77349793260c 100644 --- a/oox/source/ppt/slidetransitioncontext.cxx +++ b/oox/source/ppt/slidetransitioncontext.cxx @@ -33,7 +33,7 @@ using namespace ::com::sun::star::xml::sax; namespace oox::ppt { -SlideTransitionContext::SlideTransitionContext( FragmentHandler2 const & rParent, const AttributeList& rAttribs, PropertyMap & aProperties ) noexcept +SlideTransitionContext::SlideTransitionContext( FragmentHandler2 const & rParent, const AttributeList& rAttribs, PropertyMap & aProperties ) : FragmentHandler2( rParent ) , maSlideProperties( aProperties ) , mbHasTransition( false ) diff --git a/oox/source/ppt/timenodelistcontext.cxx b/oox/source/ppt/timenodelistcontext.cxx index a7637432acdb..3be3fea7ff9d 100644 --- a/oox/source/ppt/timenodelistcontext.cxx +++ b/oox/source/ppt/timenodelistcontext.cxx @@ -651,7 +651,7 @@ namespace oox::ppt { public: AnimScaleContext( FragmentHandler2 const & rParent, sal_Int32 aElement, const Reference< XFastAttributeList >& xAttribs, - const TimeNodePtr & pNode ) noexcept + const TimeNodePtr & pNode ) : TimeNodeContext( rParent, aElement, pNode ) , mbZoomContents( false ) { |