[Libreoffice-commits] core.git: sc/inc sc/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Thu Jul 9 10:43:12 UTC 2020


 sc/inc/scopetools.hxx              |    2 +-
 sc/source/core/tool/scopetools.cxx |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e5edf213a99e8936e1a170673ad1c50b3d7120cd
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Thu Jul 9 09:54:10 2020 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Thu Jul 9 12:42:33 2020 +0200

    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 at redhat.com>

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);
 }


More information about the Libreoffice-commits mailing list