summaryrefslogtreecommitdiff
path: root/sd/source/ui/framework
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/framework')
-rw-r--r--sd/source/ui/framework/configuration/ConfigurationController.cxx4
-rw-r--r--sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx2
-rw-r--r--sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.hxx2
-rw-r--r--sd/source/ui/framework/configuration/UpdateRequest.cxx4
-rw-r--r--sd/source/ui/framework/configuration/UpdateRequest.hxx4
-rw-r--r--sd/source/ui/framework/factories/FrameWindowPane.cxx2
-rw-r--r--sd/source/ui/framework/factories/FrameWindowPane.hxx2
-rw-r--r--sd/source/ui/framework/factories/FullScreenPane.cxx2
-rw-r--r--sd/source/ui/framework/factories/FullScreenPane.hxx2
-rw-r--r--sd/source/ui/framework/factories/Pane.cxx2
-rw-r--r--sd/source/ui/framework/module/ModuleController.cxx2
11 files changed, 14 insertions, 14 deletions
diff --git a/sd/source/ui/framework/configuration/ConfigurationController.cxx b/sd/source/ui/framework/configuration/ConfigurationController.cxx
index 470d9777f7f6..b2ec80bdee68 100644
--- a/sd/source/ui/framework/configuration/ConfigurationController.cxx
+++ b/sd/source/ui/framework/configuration/ConfigurationController.cxx
@@ -101,14 +101,14 @@ ConfigurationController::Lock::~Lock()
//===== ConfigurationController ===============================================
-ConfigurationController::ConfigurationController() throw()
+ConfigurationController::ConfigurationController() noexcept
: ConfigurationControllerInterfaceBase(MutexOwner::maMutex)
, mpImplementation()
, mbIsDisposed(false)
{
}
-ConfigurationController::~ConfigurationController() throw()
+ConfigurationController::~ConfigurationController() noexcept
{
}
diff --git a/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx b/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx
index 088253d5606b..61413ef55dfb 100644
--- a/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx
+++ b/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.cxx
@@ -42,7 +42,7 @@ GenericConfigurationChangeRequest::GenericConfigurationChangeRequest (
throw css::lang::IllegalArgumentException();
}
-GenericConfigurationChangeRequest::~GenericConfigurationChangeRequest() throw()
+GenericConfigurationChangeRequest::~GenericConfigurationChangeRequest() noexcept
{
}
diff --git a/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.hxx b/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.hxx
index f46275fb0aaf..7b7fb2bc6bdf 100644
--- a/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.hxx
+++ b/sd/source/ui/framework/configuration/GenericConfigurationChangeRequest.hxx
@@ -64,7 +64,7 @@ public:
rxResourceId,
const Mode eMode);
- virtual ~GenericConfigurationChangeRequest() throw() override;
+ virtual ~GenericConfigurationChangeRequest() noexcept override;
// XConfigurationChangeOperation
diff --git a/sd/source/ui/framework/configuration/UpdateRequest.cxx b/sd/source/ui/framework/configuration/UpdateRequest.cxx
index ec927e238003..53c9ddd45049 100644
--- a/sd/source/ui/framework/configuration/UpdateRequest.cxx
+++ b/sd/source/ui/framework/configuration/UpdateRequest.cxx
@@ -25,12 +25,12 @@ using namespace ::com::sun::star::drawing::framework;
namespace sd::framework
{
-UpdateRequest::UpdateRequest() throw()
+UpdateRequest::UpdateRequest() noexcept
: UpdateRequestInterfaceBase(MutexOwner::maMutex)
{
}
-UpdateRequest::~UpdateRequest() throw() {}
+UpdateRequest::~UpdateRequest() noexcept {}
void SAL_CALL UpdateRequest::execute(const Reference<XConfiguration>&)
{
diff --git a/sd/source/ui/framework/configuration/UpdateRequest.hxx b/sd/source/ui/framework/configuration/UpdateRequest.hxx
index 68cdecbd3276..3a53b82ae8d9 100644
--- a/sd/source/ui/framework/configuration/UpdateRequest.hxx
+++ b/sd/source/ui/framework/configuration/UpdateRequest.hxx
@@ -46,8 +46,8 @@ class UpdateRequest
public UpdateRequestInterfaceBase
{
public:
- UpdateRequest() throw();
- virtual ~UpdateRequest() throw() override;
+ UpdateRequest() noexcept;
+ virtual ~UpdateRequest() noexcept override;
// XConfigurationChangeOperation
diff --git a/sd/source/ui/framework/factories/FrameWindowPane.cxx b/sd/source/ui/framework/factories/FrameWindowPane.cxx
index bd0cd6eeb8f3..1f4b387d88ec 100644
--- a/sd/source/ui/framework/factories/FrameWindowPane.cxx
+++ b/sd/source/ui/framework/factories/FrameWindowPane.cxx
@@ -30,7 +30,7 @@ FrameWindowPane::FrameWindowPane(const Reference<XResourceId>& rxPaneId, vcl::Wi
{
}
-FrameWindowPane::~FrameWindowPane() throw() {}
+FrameWindowPane::~FrameWindowPane() noexcept {}
sal_Bool SAL_CALL FrameWindowPane::isAnchorOnly() { return false; }
diff --git a/sd/source/ui/framework/factories/FrameWindowPane.hxx b/sd/source/ui/framework/factories/FrameWindowPane.hxx
index a3808ee12042..67da37fdff25 100644
--- a/sd/source/ui/framework/factories/FrameWindowPane.hxx
+++ b/sd/source/ui/framework/factories/FrameWindowPane.hxx
@@ -36,7 +36,7 @@ class FrameWindowPane : public Pane
public:
FrameWindowPane(const css::uno::Reference<css::drawing::framework::XResourceId>& rxPaneId,
vcl::Window* pWindow);
- virtual ~FrameWindowPane() throw() override;
+ virtual ~FrameWindowPane() noexcept override;
/** A frame window typically can (and should) exists on its own without
children, if only to visualize that something (a view) is missing.
diff --git a/sd/source/ui/framework/factories/FullScreenPane.cxx b/sd/source/ui/framework/factories/FullScreenPane.cxx
index 6a0e153b5399..b63da87397b3 100644
--- a/sd/source/ui/framework/factories/FullScreenPane.cxx
+++ b/sd/source/ui/framework/factories/FullScreenPane.cxx
@@ -92,7 +92,7 @@ FullScreenPane::FullScreenPane (
mpWindow->GrabFocus();
}
-FullScreenPane::~FullScreenPane() throw()
+FullScreenPane::~FullScreenPane() noexcept
{
}
diff --git a/sd/source/ui/framework/factories/FullScreenPane.hxx b/sd/source/ui/framework/factories/FullScreenPane.hxx
index 984ca96cfdec..b33804ee5856 100644
--- a/sd/source/ui/framework/factories/FullScreenPane.hxx
+++ b/sd/source/ui/framework/factories/FullScreenPane.hxx
@@ -50,7 +50,7 @@ public:
const css::uno::Reference<css::uno::XComponentContext>& rxComponentContext,
const css::uno::Reference<css::drawing::framework::XResourceId>& rxPaneId,
const vcl::Window* pViewShellWindow);
- virtual ~FullScreenPane() throw() override;
+ virtual ~FullScreenPane() noexcept override;
virtual void SAL_CALL disposing() override;
diff --git a/sd/source/ui/framework/factories/Pane.cxx b/sd/source/ui/framework/factories/Pane.cxx
index 25d1bcb40e29..4596bd73d6f8 100644
--- a/sd/source/ui/framework/factories/Pane.cxx
+++ b/sd/source/ui/framework/factories/Pane.cxx
@@ -35,7 +35,7 @@ namespace sd::framework {
Pane::Pane (
const Reference<XResourceId>& rxPaneId,
vcl::Window* pWindow)
- throw ()
+ noexcept
: PaneInterfaceBase(MutexOwner::maMutex),
mxPaneId(rxPaneId),
mpWindow(pWindow),
diff --git a/sd/source/ui/framework/module/ModuleController.cxx b/sd/source/ui/framework/module/ModuleController.cxx
index b01074c3ca74..ff79439786d5 100644
--- a/sd/source/ui/framework/module/ModuleController.cxx
+++ b/sd/source/ui/framework/module/ModuleController.cxx
@@ -100,7 +100,7 @@ ModuleController::ModuleController (const Reference<XComponentContext>& rxContex
}
}
-ModuleController::~ModuleController() throw()
+ModuleController::~ModuleController() noexcept
{
}