sd/source/ui/framework/configuration/ConfigurationController.cxx | 2 +- sd/source/ui/inc/framework/ConfigurationController.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit abe13104486d9c360c5624c4710c06c19482f410 Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Thu Jan 26 14:06:25 2023 +0000 Commit: Caolán McNamara <caol...@redhat.com> CommitDate: Thu Jan 26 16:01:12 2023 +0000 cid#1520593 Uncaught exception Change-Id: I14f412e9dda71863036cd99bc29f86d31b947163 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/146177 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caol...@redhat.com> 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;