[Libreoffice-commits] core.git: sc/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Sat May 2 16:29:59 UTC 2020
sc/source/ui/formdlg/formula.cxx | 2 +-
sc/source/ui/inc/formula.hxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit d8c77a54cebdbb60006aa2391ad75e9d6fd0444b
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Sat May 2 16:05:03 2020 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat May 2 18:29:26 2020 +0200
cid#1401342 silence Uncaught exception
Change-Id: I961d68bc02ed22ab446dabbc6073df8ddf6730f0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93312
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sc/source/ui/formdlg/formula.cxx b/sc/source/ui/formdlg/formula.cxx
index 624eb67cda1b..9bd22bc4b0e2 100644
--- a/sc/source/ui/formdlg/formula.cxx
+++ b/sc/source/ui/formdlg/formula.cxx
@@ -231,7 +231,7 @@ void ScFormulaDlg::fill()
}
}
-ScFormulaDlg::~ScFormulaDlg()
+ScFormulaDlg::~ScFormulaDlg() COVERITY_NOEXCEPT_FALSE
{
ScFormEditData* pData = m_pViewShell->GetFormEditData();
diff --git a/sc/source/ui/inc/formula.hxx b/sc/source/ui/inc/formula.hxx
index 8fc552073e5e..b404b20d6be3 100644
--- a/sc/source/ui/inc/formula.hxx
+++ b/sc/source/ui/inc/formula.hxx
@@ -47,7 +47,7 @@ class ScFormulaDlg final : public formula::FormulaDlg,
public:
ScFormulaDlg( SfxBindings* pB, SfxChildWindow* pCW,
weld::Window* pParent, const ScViewData* pViewData, const formula::IFunctionManager* _pFunctionMgr);
- virtual ~ScFormulaDlg() override;
+ virtual ~ScFormulaDlg() COVERITY_NOEXCEPT_FALSE override;
// IFormulaEditorHelper
virtual void notifyChange() override;
More information about the Libreoffice-commits
mailing list