summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-07-20 14:36:54 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-07-21 00:31:39 +0200
commit8c02e1790cc0f3dd7a9868f66173369d704df880 (patch)
tree4407ce5ad9064bfd9f55131d64820fae42b847de /sc
parentdd950a6edbd3abc45409724be8cabe1dee71b63d (diff)
cid#1399198 Uncaught exception
Change-Id: Ibf07c82669919a3f905b416e92cfbe0f08d99a8d Reviewed-on: https://gerrit.libreoffice.org/76004 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/inc/anyrefdg.hxx2
-rw-r--r--sc/source/ui/miscdlgs/anyrefdg.cxx2
2 files changed, 2 insertions, 2 deletions
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();
}