summaryrefslogtreecommitdiff
path: root/svtools/source/graphic/renderer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/graphic/renderer.cxx')
-rw-r--r--svtools/source/graphic/renderer.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/graphic/renderer.cxx b/svtools/source/graphic/renderer.cxx
index c197e6e0c4d5..220e047a84aa 100644
--- a/svtools/source/graphic/renderer.cxx
+++ b/svtools/source/graphic/renderer.cxx
@@ -58,8 +58,8 @@ public:
// XInterface
virtual css::uno::Any SAL_CALL queryAggregation( const css::uno::Type & rType ) override;
virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
- 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;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName() override;
@@ -122,14 +122,14 @@ uno::Any SAL_CALL GraphicRendererVCL::queryInterface( const uno::Type & rType )
void SAL_CALL GraphicRendererVCL::acquire()
- throw()
+ noexcept
{
OWeakAggObject::acquire();
}
void SAL_CALL GraphicRendererVCL::release()
- throw()
+ noexcept
{
OWeakAggObject::release();
}