summaryrefslogtreecommitdiff
path: root/svx/source/customshapes
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/customshapes')
-rw-r--r--svx/source/customshapes/EnhancedCustomShapeEngine.cxx8
-rw-r--r--svx/source/customshapes/EnhancedCustomShapeHandle.cxx4
-rw-r--r--svx/source/customshapes/EnhancedCustomShapeHandle.hxx4
3 files changed, 8 insertions, 8 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();
}
diff --git a/svx/source/customshapes/EnhancedCustomShapeHandle.cxx b/svx/source/customshapes/EnhancedCustomShapeHandle.cxx
index ee7143459b9c..c7b790063d31 100644
--- a/svx/source/customshapes/EnhancedCustomShapeHandle.cxx
+++ b/svx/source/customshapes/EnhancedCustomShapeHandle.cxx
@@ -35,13 +35,13 @@ EnhancedCustomShapeHandle::~EnhancedCustomShapeHandle()
}
-void SAL_CALL EnhancedCustomShapeHandle::acquire() throw()
+void SAL_CALL EnhancedCustomShapeHandle::acquire() noexcept
{
OWeakObject::acquire();
}
-void SAL_CALL EnhancedCustomShapeHandle::release() throw()
+void SAL_CALL EnhancedCustomShapeHandle::release() noexcept
{
OWeakObject::release();
}
diff --git a/svx/source/customshapes/EnhancedCustomShapeHandle.hxx b/svx/source/customshapes/EnhancedCustomShapeHandle.hxx
index 0fa64bbe4bcd..b56909420768 100644
--- a/svx/source/customshapes/EnhancedCustomShapeHandle.hxx
+++ b/svx/source/customshapes/EnhancedCustomShapeHandle.hxx
@@ -41,8 +41,8 @@ public:
virtual ~EnhancedCustomShapeHandle() override;
// 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;
// XCustomShapeHandle
virtual css::awt::Point SAL_CALL getPosition() override;