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 <caol...@redhat.com>
AuthorDate: Sat Jul 20 14:48:39 2019 +0100
Commit:     Caolán McNamara <caol...@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 <caol...@redhat.com>
    Tested-by: Caolán McNamara <caol...@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);
 }
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to