summaryrefslogtreecommitdiff
path: root/basctl/source
diff options
context:
space:
mode:
Diffstat (limited to 'basctl/source')
-rw-r--r--basctl/source/basicide/basidectrlr.cxx4
-rw-r--r--basctl/source/basicide/unomodel.cxx4
-rw-r--r--basctl/source/basicide/unomodel.hxx4
-rw-r--r--basctl/source/inc/basidectrlr.hxx4
4 files changed, 8 insertions, 8 deletions
diff --git a/basctl/source/basicide/basidectrlr.cxx b/basctl/source/basicide/basidectrlr.cxx
index 88e67bc3bbc0..849bff30cbe7 100644
--- a/basctl/source/basicide/basidectrlr.cxx
+++ b/basctl/source/basicide/basidectrlr.cxx
@@ -61,12 +61,12 @@ Any SAL_CALL Controller::queryInterface( const Type & rType )
return aReturn;
}
-void SAL_CALL Controller::acquire() throw()
+void SAL_CALL Controller::acquire() noexcept
{
SfxBaseController::acquire();
}
-void SAL_CALL Controller::release() throw()
+void SAL_CALL Controller::release() noexcept
{
SfxBaseController::release();
}
diff --git a/basctl/source/basicide/unomodel.cxx b/basctl/source/basicide/unomodel.cxx
index f22634935fcc..4a9ee759f060 100644
--- a/basctl/source/basicide/unomodel.cxx
+++ b/basctl/source/basicide/unomodel.cxx
@@ -59,13 +59,13 @@ uno::Any SAL_CALL SIDEModel::queryInterface( const uno::Type& rType )
return aRet;
}
-void SAL_CALL SIDEModel::acquire() throw()
+void SAL_CALL SIDEModel::acquire() noexcept
{
SolarMutexGuard aGuard;
OWeakObject::acquire();
}
-void SAL_CALL SIDEModel::release() throw()
+void SAL_CALL SIDEModel::release() noexcept
{
SolarMutexGuard aGuard;
OWeakObject::release();
diff --git a/basctl/source/basicide/unomodel.hxx b/basctl/source/basicide/unomodel.hxx
index 23b458fd8220..b47873005699 100644
--- a/basctl/source/basicide/unomodel.hxx
+++ b/basctl/source/basicide/unomodel.hxx
@@ -35,8 +35,8 @@ public:
//XInterface
virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) 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;
//XTypeProvider
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
diff --git a/basctl/source/inc/basidectrlr.hxx b/basctl/source/inc/basidectrlr.hxx
index 7db0824df744..a32e1ffd94af 100644
--- a/basctl/source/inc/basidectrlr.hxx
+++ b/basctl/source/inc/basidectrlr.hxx
@@ -45,8 +45,8 @@ public:
// XInterface
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;
// XTypeProvider ( ::SfxBaseController )
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() override;