[Libreoffice-commits] core.git: sc/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Sat Jul 20 22:32:43 UTC 2019
sc/source/ui/inc/anyrefdg.hxx | 2 +-
sc/source/ui/miscdlgs/anyrefdg.cxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 8c02e1790cc0f3dd7a9868f66173369d704df880
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Sat Jul 20 14:36:54 2019 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Sun Jul 21 00:31:39 2019 +0200
cid#1399198 Uncaught exception
Change-Id: Ibf07c82669919a3f905b416e92cfbe0f08d99a8d
Reviewed-on: https://gerrit.libreoffice.org/76004
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sc/source/ui/inc/anyrefdg.hxx b/sc/source/ui/inc/anyrefdg.hxx
index 1417662956be..4684bdaf2031 100644
--- a/sc/source/ui/inc/anyrefdg.hxx
+++ b/sc/source/ui/inc/anyrefdg.hxx
@@ -53,7 +53,7 @@ class ScFormulaReferenceHelper
public:
ScFormulaReferenceHelper(IAnyRefDialog* _pDlg, SfxBindings* _pBindings);
- ~ScFormulaReferenceHelper();
+ ~ScFormulaReferenceHelper() COVERITY_NOEXCEPT_FALSE;
void dispose();
void ShowSimpleReference(const OUString& rStr);
diff --git a/sc/source/ui/miscdlgs/anyrefdg.cxx b/sc/source/ui/miscdlgs/anyrefdg.cxx
index 168070ea4e64..b9e5b271006e 100644
--- a/sc/source/ui/miscdlgs/anyrefdg.cxx
+++ b/sc/source/ui/miscdlgs/anyrefdg.cxx
@@ -53,7 +53,7 @@ ScFormulaReferenceHelper::ScFormulaReferenceHelper(IAnyRefDialog* _pDlg,SfxBindi
m_bEnableColorRef=aInputOption.GetRangeFinder();
}
-ScFormulaReferenceHelper::~ScFormulaReferenceHelper()
+ScFormulaReferenceHelper::~ScFormulaReferenceHelper() COVERITY_NOEXCEPT_FALSE
{
dispose();
}
More information about the Libreoffice-commits
mailing list