summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-07-09 09:54:10 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-07-09 12:42:33 +0200
commite5edf213a99e8936e1a170673ad1c50b3d7120cd (patch)
treefa563ffafa634c0a82d7a6f4d3845d50b7c8c898 /sc
parentf5bb3096d2574756e0e1e62258b7d7604e9ab88f (diff)
cid#1465236 Uncaught exception
Change-Id: I1303fe8ac9a5eecc06d9622893c8643d87120a58 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98407 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/scopetools.hxx2
-rw-r--r--sc/source/core/tool/scopetools.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/scopetools.hxx b/sc/inc/scopetools.hxx
index eb2941f15777..d87cb9b04ad6 100644
--- a/sc/inc/scopetools.hxx
+++ b/sc/inc/scopetools.hxx
@@ -83,7 +83,7 @@ public:
DelayStartListeningFormulaCells(ScColumn& column, bool delay);
DelayStartListeningFormulaCells(ScColumn& column);
DelayStartListeningFormulaCells(const DelayStartListeningFormulaCells&) = delete;
- ~DelayStartListeningFormulaCells();
+ ~DelayStartListeningFormulaCells() COVERITY_NOEXCEPT_FALSE;
void set();
};
diff --git a/sc/source/core/tool/scopetools.cxx b/sc/source/core/tool/scopetools.cxx
index 6416e3c2ea89..541ec3e3c3ea 100644
--- a/sc/source/core/tool/scopetools.cxx
+++ b/sc/source/core/tool/scopetools.cxx
@@ -85,7 +85,7 @@ DelayStartListeningFormulaCells::DelayStartListeningFormulaCells(ScColumn& colum
{
}
-DelayStartListeningFormulaCells::~DelayStartListeningFormulaCells()
+DelayStartListeningFormulaCells::~DelayStartListeningFormulaCells() COVERITY_NOEXCEPT_FALSE
{
mColumn.GetDoc()->EnableDelayStartListeningFormulaCells(&mColumn, mbOldValue);
}