summaryrefslogtreecommitdiff
path: root/svx/source/unodraw/unoshcol.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/unodraw/unoshcol.cxx')
-rw-r--r--svx/source/unodraw/unoshcol.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/unodraw/unoshcol.cxx b/svx/source/unodraw/unoshcol.cxx
index b1f3a4f4a10e..616f05151e8f 100644
--- a/svx/source/unodraw/unoshcol.cxx
+++ b/svx/source/unodraw/unoshcol.cxx
@@ -52,10 +52,10 @@ private:
cppu::OBroadcastHelper mrBHelper;
public:
- SvxShapeCollection() throw();
+ SvxShapeCollection() noexcept;
// XInterface
- virtual void SAL_CALL release() throw() override;
+ virtual void SAL_CALL release() noexcept override;
// XComponent
virtual void SAL_CALL dispose() override;
@@ -80,13 +80,13 @@ public:
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
};
-SvxShapeCollection::SvxShapeCollection() throw()
+SvxShapeCollection::SvxShapeCollection() noexcept
: maShapeContainer( maMutex ), mrBHelper( maMutex )
{
}
// XInterface
-void SvxShapeCollection::release() throw()
+void SvxShapeCollection::release() noexcept
{
uno::Reference< uno::XInterface > x( xDelegator );
if (! x.is())