diff options
author | Caolán McNamara <caolanm@redhat.com> | 2023-01-26 14:06:25 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2023-01-26 16:01:12 +0000 |
commit | abe13104486d9c360c5624c4710c06c19482f410 (patch) | |
tree | bc217eac333188715a31ba1a67acbe583521f1d2 /sd | |
parent | f8a5e416ea7713c7936b1533b43e16e2b711bea1 (diff) |
cid#1520593 Uncaught exception
Change-Id: I14f412e9dda71863036cd99bc29f86d31b947163
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146177
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/framework/configuration/ConfigurationController.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/inc/framework/ConfigurationController.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/framework/configuration/ConfigurationController.cxx b/sd/source/ui/framework/configuration/ConfigurationController.cxx index 7e44e9025115..15daf362f906 100644 --- a/sd/source/ui/framework/configuration/ConfigurationController.cxx +++ b/sd/source/ui/framework/configuration/ConfigurationController.cxx @@ -102,7 +102,7 @@ ConfigurationController::Lock::~Lock() //===== ConfigurationController =============================================== -ConfigurationController::ConfigurationController(const rtl::Reference<::sd::DrawController>& rxController) noexcept +ConfigurationController::ConfigurationController(const rtl::Reference<::sd::DrawController>& rxController) : ConfigurationControllerInterfaceBase(m_aMutex) , mbIsDisposed(false) { diff --git a/sd/source/ui/inc/framework/ConfigurationController.hxx b/sd/source/ui/inc/framework/ConfigurationController.hxx index d56ca84770e0..74b60d3bb215 100644 --- a/sd/source/ui/inc/framework/ConfigurationController.hxx +++ b/sd/source/ui/inc/framework/ConfigurationController.hxx @@ -53,7 +53,7 @@ class ConfigurationController public ConfigurationControllerInterfaceBase { public: - ConfigurationController(const rtl::Reference<::sd::DrawController>& rxController) noexcept; + ConfigurationController(const rtl::Reference<::sd::DrawController>& rxController); virtual ~ConfigurationController() noexcept override; ConfigurationController(const ConfigurationController&) = delete; ConfigurationController& operator=(const ConfigurationController&) = delete; |