summaryrefslogtreecommitdiff
path: root/svx/source/customshapes/EnhancedCustomShapeEngine.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/customshapes/EnhancedCustomShapeEngine.cxx')
-rw-r--r--svx/source/customshapes/EnhancedCustomShapeEngine.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/customshapes/EnhancedCustomShapeEngine.cxx b/svx/source/customshapes/EnhancedCustomShapeEngine.cxx
index 28684e59e5c7..9999f54c1c33 100644
--- a/svx/source/customshapes/EnhancedCustomShapeEngine.cxx
+++ b/svx/source/customshapes/EnhancedCustomShapeEngine.cxx
@@ -73,8 +73,8 @@ public:
EnhancedCustomShapeEngine();
// XInterface
- virtual void SAL_CALL acquire() throw() override;
- virtual void SAL_CALL release() throw() override;
+ virtual void SAL_CALL acquire() noexcept override;
+ virtual void SAL_CALL release() noexcept override;
// XInitialization
virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) override;
@@ -97,11 +97,11 @@ EnhancedCustomShapeEngine::EnhancedCustomShapeEngine() :
}
// XInterface
-void SAL_CALL EnhancedCustomShapeEngine::acquire() throw()
+void SAL_CALL EnhancedCustomShapeEngine::acquire() noexcept
{
OWeakObject::acquire();
}
-void SAL_CALL EnhancedCustomShapeEngine::release() throw()
+void SAL_CALL EnhancedCustomShapeEngine::release() noexcept
{
OWeakObject::release();
}