diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-05-02 16:05:03 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-05-02 18:29:26 +0200 |
commit | d8c77a54cebdbb60006aa2391ad75e9d6fd0444b (patch) | |
tree | 1172e1b39333b4073368bfdcf85955e65ebfb1d4 /sc | |
parent | 8992c6d40572fadcb309a4e401e0131daaebc1f6 (diff) |
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@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/formdlg/formula.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/inc/formula.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
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; |