summaryrefslogtreecommitdiff
path: root/framework/source/uielement
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/uielement')
-rw-r--r--framework/source/uielement/buttontoolbarcontroller.cxx4
-rw-r--r--framework/source/uielement/menubarwrapper.cxx4
-rw-r--r--framework/source/uielement/toolbarwrapper.cxx4
3 files changed, 6 insertions, 6 deletions
diff --git a/framework/source/uielement/buttontoolbarcontroller.cxx b/framework/source/uielement/buttontoolbarcontroller.cxx
index 6c5c3fdeb88c..a3ccbc0cd38d 100644
--- a/framework/source/uielement/buttontoolbarcontroller.cxx
+++ b/framework/source/uielement/buttontoolbarcontroller.cxx
@@ -75,12 +75,12 @@ uno::Any SAL_CALL ButtonToolbarController::queryInterface( const uno::Type& rTyp
return cppu::OWeakObject::queryInterface( rType );
}
-void SAL_CALL ButtonToolbarController::acquire() throw ()
+void SAL_CALL ButtonToolbarController::acquire() noexcept
{
cppu::OWeakObject::acquire();
}
-void SAL_CALL ButtonToolbarController::release() throw ()
+void SAL_CALL ButtonToolbarController::release() noexcept
{
cppu::OWeakObject::release();
}
diff --git a/framework/source/uielement/menubarwrapper.cxx b/framework/source/uielement/menubarwrapper.cxx
index 9d39e2623dce..a8bf9a845f6c 100644
--- a/framework/source/uielement/menubarwrapper.cxx
+++ b/framework/source/uielement/menubarwrapper.cxx
@@ -44,13 +44,13 @@ using namespace ::com::sun::star::ui;
namespace framework
{
-void SAL_CALL MenuBarWrapper::acquire() throw() \
+void SAL_CALL MenuBarWrapper::acquire() noexcept \
{ \
/* Don't use mutex in methods of XInterface! */ \
UIConfigElementWrapperBase::acquire(); \
} \
\
-void SAL_CALL MenuBarWrapper::release() throw() \
+void SAL_CALL MenuBarWrapper::release() noexcept \
{ \
/* Don't use mutex in methods of XInterface! */ \
UIConfigElementWrapperBase::release(); \
diff --git a/framework/source/uielement/toolbarwrapper.cxx b/framework/source/uielement/toolbarwrapper.cxx
index 1199cd7ca51a..0928c5a4702a 100644
--- a/framework/source/uielement/toolbarwrapper.cxx
+++ b/framework/source/uielement/toolbarwrapper.cxx
@@ -56,12 +56,12 @@ ToolBarWrapper::~ToolBarWrapper()
}
// XInterface
-void SAL_CALL ToolBarWrapper::acquire() throw()
+void SAL_CALL ToolBarWrapper::acquire() noexcept
{
UIConfigElementWrapperBase::acquire();
}
-void SAL_CALL ToolBarWrapper::release() throw()
+void SAL_CALL ToolBarWrapper::release() noexcept
{
UIConfigElementWrapperBase::release();
}