summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/colcontainer.hxx2
-rw-r--r--sc/inc/colorscale.hxx2
-rw-r--r--sc/inc/column.hxx4
-rw-r--r--sc/inc/table.hxx2
4 files changed, 5 insertions, 5 deletions
diff --git a/sc/inc/colcontainer.hxx b/sc/inc/colcontainer.hxx
index 21463edb0bd4..92fff8f4a42e 100644
--- a/sc/inc/colcontainer.hxx
+++ b/sc/inc/colcontainer.hxx
@@ -36,7 +36,7 @@ class ScColContainer
public:
ScColContainer( ScDocument* pDoc, const size_t nSize );
- ~ScColContainer();
+ ~ScColContainer() COVERITY_NOEXCEPT_FALSE;
const ScColumn& operator[] ( const size_t nIndex ) const
{
diff --git a/sc/inc/colorscale.hxx b/sc/inc/colorscale.hxx
index 840b6824963d..bdf0148268cf 100644
--- a/sc/inc/colorscale.hxx
+++ b/sc/inc/colorscale.hxx
@@ -55,7 +55,7 @@ public:
ScColorScaleEntry();
ScColorScaleEntry(const ScColorScaleEntry& rEntry);
ScColorScaleEntry(ScDocument* pDoc, const ScColorScaleEntry& rEntry);
- ~ScColorScaleEntry();
+ ~ScColorScaleEntry() COVERITY_NOEXCEPT_FALSE;
const Color& GetColor() const { return maColor;}
void SetColor(const Color&);
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx
index 69caa12e648a..585b930cf56a 100644
--- a/sc/inc/column.hxx
+++ b/sc/inc/column.hxx
@@ -184,8 +184,8 @@ public:
BROADCAST_BROADCASTERS ///< broadcast only existing cell broadcasters => no AreaBroadcast of range!
};
- ScColumn();
- ~ScColumn();
+ ScColumn();
+ ~ScColumn() COVERITY_NOEXCEPT_FALSE;
void Init(SCCOL nNewCol, SCTAB nNewTab, ScDocument* pDoc, bool bEmptyAttrArray = false);
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx
index 1227847fea2e..eb55829d65fe 100644
--- a/sc/inc/table.hxx
+++ b/sc/inc/table.hxx
@@ -233,7 +233,7 @@ friend class sc::FormulaGroupAreaListener;
public:
ScTable( ScDocument* pDoc, SCTAB nNewTab, const OUString& rNewName,
bool bColInfo = true, bool bRowInfo = true );
- ~ScTable();
+ ~ScTable() COVERITY_NOEXCEPT_FALSE;
ScTable(const ScTable&) = delete;
ScTable& operator=(const ScTable&) = delete;