diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/colcontainer.hxx | 2 | ||||
-rw-r--r-- | sc/inc/colorscale.hxx | 2 | ||||
-rw-r--r-- | sc/inc/column.hxx | 4 | ||||
-rw-r--r-- | sc/inc/table.hxx | 2 | ||||
-rw-r--r-- | sc/qa/unit/helper/sorthelper.hxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/colcontainer.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/colorscale.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/column.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/documen8.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/table1.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/inc/bcaslot.hxx | 2 | ||||
-rw-r--r-- | sc/source/core/tool/scmatrix.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/docshell/docsh.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/docshell/impex.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/inc/docsh.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/inc/impex.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/inc/viewdata.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/unoobj/funcuno.cxx | 4 | ||||
-rw-r--r-- | sc/source/ui/view/viewdata.cxx | 2 |
19 files changed, 22 insertions, 22 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; diff --git a/sc/qa/unit/helper/sorthelper.hxx b/sc/qa/unit/helper/sorthelper.hxx index d094e0b16113..b1901000ff0b 100644 --- a/sc/qa/unit/helper/sorthelper.hxx +++ b/sc/qa/unit/helper/sorthelper.hxx @@ -32,7 +32,7 @@ public: SC_MOD()->SetInputOptions(aInputOptions); return bRet; } - virtual ~SortTypeSetter() + virtual ~SortTypeSetter() COVERITY_NOEXCEPT_FALSE { changeTo(mbSortRefUpdate); } diff --git a/sc/source/core/data/colcontainer.cxx b/sc/source/core/data/colcontainer.cxx index fa2a18feb257..cd185032ee8b 100644 --- a/sc/source/core/data/colcontainer.cxx +++ b/sc/source/core/data/colcontainer.cxx @@ -30,7 +30,7 @@ ScColContainer::ScColContainer( ScDocument* pDoc, const size_t nSize ) aCols[nCol] = new ScColumn; } -ScColContainer::~ScColContainer() +ScColContainer::~ScColContainer() COVERITY_NOEXCEPT_FALSE { Clear(); } diff --git a/sc/source/core/data/colorscale.cxx b/sc/source/core/data/colorscale.cxx index cfa93309ec63..6b9837bb4a68 100644 --- a/sc/source/core/data/colorscale.cxx +++ b/sc/source/core/data/colorscale.cxx @@ -194,7 +194,7 @@ ScColorScaleEntry::ScColorScaleEntry(ScDocument* pDoc, const ScColorScaleEntry& } } -ScColorScaleEntry::~ScColorScaleEntry() +ScColorScaleEntry::~ScColorScaleEntry() COVERITY_NOEXCEPT_FALSE { if(mpCell) mpCell->EndListeningTo(mpCell->GetDocument()); diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx index f0735c5a7948..17974f0aa46a 100644 --- a/sc/source/core/data/column.cxx +++ b/sc/source/core/data/column.cxx @@ -97,7 +97,7 @@ ScColumn::ScColumn() : maCells.resize(MAXROWCOUNT); } -ScColumn::~ScColumn() +ScColumn::~ScColumn() COVERITY_NOEXCEPT_FALSE { FreeAll(); delete pAttrArray; diff --git a/sc/source/core/data/documen8.cxx b/sc/source/core/data/documen8.cxx index 16e4909ab5ff..a3f81f202d2b 100644 --- a/sc/source/core/data/documen8.cxx +++ b/sc/source/core/data/documen8.cxx @@ -483,7 +483,7 @@ public: mpStylePool->SetSearchMask(SfxStyleFamily::Page); } - ~IdleCalcTextWidthScope() + ~IdleCalcTextWidthScope() COVERITY_NOEXCEPT_FALSE { SfxPrinter* pDev = mrDoc.GetPrinter(); if (pDev) diff --git a/sc/source/core/data/table1.cxx b/sc/source/core/data/table1.cxx index e527bb82ec5e..fe7b88966374 100644 --- a/sc/source/core/data/table1.cxx +++ b/sc/source/core/data/table1.cxx @@ -330,7 +330,7 @@ ScTable::ScTable( ScDocument* pDoc, SCTAB nNewTab, const OUString& rNewName, aCol[k].Init( k, nTab, pDocument, true ); } -ScTable::~ScTable() +ScTable::~ScTable() COVERITY_NOEXCEPT_FALSE { if (!pDocument->IsInDtorClear()) { diff --git a/sc/source/core/inc/bcaslot.hxx b/sc/source/core/inc/bcaslot.hxx index abffcb51a042..ce5f33384124 100644 --- a/sc/source/core/inc/bcaslot.hxx +++ b/sc/source/core/inc/bcaslot.hxx @@ -359,7 +359,7 @@ public: if (pBASM) pBASM->EnterBulkBroadcast(); } - ~ScBulkBroadcast() + ~ScBulkBroadcast() COVERITY_NOEXCEPT_FALSE { if (pBASM) pBASM->LeaveBulkBroadcast( mnHintId ); diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx index 2f603e02ff71..675c05c8881e 100644 --- a/sc/source/core/tool/scmatrix.cxx +++ b/sc/source/core/tool/scmatrix.cxx @@ -232,7 +232,7 @@ public: ScMatrixImpl( size_t nC, size_t nR, const std::vector<double>& rInitVals ); - ~ScMatrixImpl(); + ~ScMatrixImpl() COVERITY_NOEXCEPT_FALSE; void Clear(); void Resize(SCSIZE nC, SCSIZE nR); @@ -346,7 +346,7 @@ ScMatrixImpl::ScMatrixImpl(SCSIZE nC, SCSIZE nR, double fInitVal) : ScMatrixImpl::ScMatrixImpl( size_t nC, size_t nR, const std::vector<double>& rInitVals ) : maMat(nR, nC, rInitVals.begin(), rInitVals.end()), maMatFlag(nR, nC), pErrorInterpreter(nullptr) {} -ScMatrixImpl::~ScMatrixImpl() +ScMatrixImpl::~ScMatrixImpl() COVERITY_NOEXCEPT_FALSE { Clear(); } diff --git a/sc/source/ui/docshell/docsh.cxx b/sc/source/ui/docshell/docsh.cxx index 0ece2cf55594..8ccfffa058a9 100644 --- a/sc/source/ui/docshell/docsh.cxx +++ b/sc/source/ui/docshell/docsh.cxx @@ -3117,7 +3117,7 @@ ScDocShellModificator::ScDocShellModificator( ScDocShell& rDS ) rDoc.EnableIdle(false); } -ScDocShellModificator::~ScDocShellModificator() +ScDocShellModificator::~ScDocShellModificator() COVERITY_NOEXCEPT_FALSE { ScDocument& rDoc = rDocShell.GetDocument(); rDoc.SetAutoCalcShellDisabled( bAutoCalcShellDisabled ); diff --git a/sc/source/ui/docshell/impex.cxx b/sc/source/ui/docshell/impex.cxx index 936fdcf0e9b3..731f1a662c48 100644 --- a/sc/source/ui/docshell/impex.cxx +++ b/sc/source/ui/docshell/impex.cxx @@ -177,7 +177,7 @@ ScImportExport::ScImportExport( ScDocument* p, const OUString& rPos ) bAll = true; } -ScImportExport::~ScImportExport() +ScImportExport::~ScImportExport() COVERITY_NOEXCEPT_FALSE { delete pUndoDoc; delete pExtOptions; diff --git a/sc/source/ui/inc/docsh.hxx b/sc/source/ui/inc/docsh.hxx index 43204614e26d..5e2cbb8a5db2 100644 --- a/sc/source/ui/inc/docsh.hxx +++ b/sc/source/ui/inc/docsh.hxx @@ -444,7 +444,7 @@ class SC_DLLPUBLIC ScDocShellModificator public: explicit ScDocShellModificator( ScDocShell& ); - ~ScDocShellModificator(); + ~ScDocShellModificator() COVERITY_NOEXCEPT_FALSE; void SetDocumentModified(); }; diff --git a/sc/source/ui/inc/impex.hxx b/sc/source/ui/inc/impex.hxx index 609bc3daed64..02b5349c2751 100644 --- a/sc/source/ui/inc/impex.hxx +++ b/sc/source/ui/inc/impex.hxx @@ -92,7 +92,7 @@ public: ScImportExport( ScDocument*, const OUString& ); // Range/cell input ScImportExport( ScDocument*, const ScAddress& ); ScImportExport( ScDocument*, const ScRange& ); - ~ScImportExport(); + ~ScImportExport() COVERITY_NOEXCEPT_FALSE; void SetExtOptions( const ScAsciiOptions& rOpt ); void SetFilterOptions( const OUString& rFilterOptions ); diff --git a/sc/source/ui/inc/viewdata.hxx b/sc/source/ui/inc/viewdata.hxx index 0c0613526d8f..13d6514bea5c 100644 --- a/sc/source/ui/inc/viewdata.hxx +++ b/sc/source/ui/inc/viewdata.hxx @@ -247,7 +247,7 @@ private: public: ScViewData( ScDocShell* pDocSh, ScTabViewShell* pViewSh ); ScViewData( const ScViewData& rViewData ); - ~ScViewData(); + ~ScViewData() COVERITY_NOEXCEPT_FALSE; void InitData( ScDocument* pDocument ); diff --git a/sc/source/ui/unoobj/funcuno.cxx b/sc/source/ui/unoobj/funcuno.cxx index 81e13bde7bd8..f7865ea7df76 100644 --- a/sc/source/ui/unoobj/funcuno.cxx +++ b/sc/source/ui/unoobj/funcuno.cxx @@ -67,7 +67,7 @@ private: public: explicit ScTempDocSource( ScTempDocCache& rDocCache ); - ~ScTempDocSource(); + ~ScTempDocSource() COVERITY_NOEXCEPT_FALSE; ScDocument* GetDocument(); }; @@ -93,7 +93,7 @@ ScTempDocSource::ScTempDocSource( ScTempDocCache& rDocCache ) : } } -ScTempDocSource::~ScTempDocSource() +ScTempDocSource::~ScTempDocSource() COVERITY_NOEXCEPT_FALSE { if ( pTempDoc ) delete pTempDoc; diff --git a/sc/source/ui/view/viewdata.cxx b/sc/source/ui/view/viewdata.cxx index f4daf380d684..63257497cb7c 100644 --- a/sc/source/ui/view/viewdata.cxx +++ b/sc/source/ui/view/viewdata.cxx @@ -492,7 +492,7 @@ ScDocument* ScViewData::GetDocument() const return nullptr; } -ScViewData::~ScViewData() +ScViewData::~ScViewData() COVERITY_NOEXCEPT_FALSE { KillEditView(); delete pOptions; |