[Libreoffice-commits] core.git: sc/inc sc/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Sat Jul 20 17:01:39 UTC 2019
sc/inc/scopetools.hxx | 2 +-
sc/source/core/tool/scopetools.cxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 90ea2a7e9ffd0bea7ce8bb9432fbda6a9fa0cde5
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Sat Jul 20 14:48:39 2019 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat Jul 20 19:00:16 2019 +0200
cid#1448465 Uncaught exception
Change-Id: Ic70f0926b4e26f82045a791eadf6af1e9d7949a9
Reviewed-on: https://gerrit.libreoffice.org/76009
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/inc/scopetools.hxx b/sc/inc/scopetools.hxx
index 135a7ff5e008..aa48cf7ebf95 100644
--- a/sc/inc/scopetools.hxx
+++ b/sc/inc/scopetools.hxx
@@ -63,7 +63,7 @@ class SC_DLLPUBLIC DelayFormulaGroupingSwitch
bool const mbOldValue;
public:
DelayFormulaGroupingSwitch(ScDocument& rDoc, bool delay);
- ~DelayFormulaGroupingSwitch();
+ ~DelayFormulaGroupingSwitch() COVERITY_NOEXCEPT_FALSE;
void reset();
};
diff --git a/sc/source/core/tool/scopetools.cxx b/sc/source/core/tool/scopetools.cxx
index 44e634ef1ecf..71a4cf15eb1d 100644
--- a/sc/source/core/tool/scopetools.cxx
+++ b/sc/source/core/tool/scopetools.cxx
@@ -63,7 +63,7 @@ DelayFormulaGroupingSwitch::DelayFormulaGroupingSwitch(ScDocument& rDoc, bool de
mrDoc.DelayFormulaGrouping(delay);
}
-DelayFormulaGroupingSwitch::~DelayFormulaGroupingSwitch()
+DelayFormulaGroupingSwitch::~DelayFormulaGroupingSwitch() COVERITY_NOEXCEPT_FALSE
{
mrDoc.DelayFormulaGrouping(mbOldValue);
}
More information about the Libreoffice-commits
mailing list