include/svx/sdr/contact/objectcontact.hxx    |    2 +-
 sc/inc/textuno.hxx                           |    2 +-
 sc/source/ui/docshell/impex.cxx              |    2 +-
 sc/source/ui/inc/impex.hxx                   |    2 +-
 sc/source/ui/unoobj/textuno.cxx              |    2 +-
 svtools/source/uno/popupwindowcontroller.cxx |    4 ++--
 svx/source/inc/cell.hxx                      |    2 +-
 svx/source/sdr/contact/objectcontact.cxx     |    2 +-
 svx/source/table/cell.cxx                    |    2 +-
 9 files changed, 10 insertions(+), 10 deletions(-)

New commits:
commit 93e9669998f6f8026e26d126eb74d0561e7bf8c5
Author:     Caolán McNamara <[email protected]>
AuthorDate: Tue Nov 25 08:35:19 2025 +0000
Commit:     Caolán McNamara <[email protected]>
CommitDate: Sat Nov 29 19:47:17 2025 +0100

    drop some coverity markup
    
    Change-Id: Iffb2542be9e973d67ea3fea5fc1e924e491f14e4
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194820
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <[email protected]>

diff --git a/include/svx/sdr/contact/objectcontact.hxx 
b/include/svx/sdr/contact/objectcontact.hxx
index 221190359fc7..7cb9da471cdb 100644
--- a/include/svx/sdr/contact/objectcontact.hxx
+++ b/include/svx/sdr/contact/objectcontact.hxx
@@ -88,7 +88,7 @@ protected:
 public:
     // basic constructor
     ObjectContact();
-    virtual ~ObjectContact() COVERITY_NOEXCEPT_FALSE;
+    virtual ~ObjectContact();
 
     // LazyInvalidate request. This is used from the VOCs to mark that they
     // got invalidated by an ActionChanged() call. An active view needs to 
remember
diff --git a/sc/inc/textuno.hxx b/sc/inc/textuno.hxx
index e9018e85ea33..de9f40f81bcd 100644
--- a/sc/inc/textuno.hxx
+++ b/sc/inc/textuno.hxx
@@ -353,7 +353,7 @@ class ScCellTextObj final : public ScCellTextData, public 
SvxUnoText
 {
 public:
                  ScCellTextObj(ScDocShell* pDocSh, const ScAddress& rP);
-        virtual  ~ScCellTextObj() COVERITY_NOEXCEPT_FALSE override;
+        virtual  ~ScCellTextObj() override;
 };
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/ui/docshell/impex.cxx b/sc/source/ui/docshell/impex.cxx
index 81b21d95abb2..0d08d1f7447b 100644
--- a/sc/source/ui/docshell/impex.cxx
+++ b/sc/source/ui/docshell/impex.cxx
@@ -189,7 +189,7 @@ ScImportExport::ScImportExport( ScDocument& r, const 
OUString& rPos )
         bAll = true;
 }
 
-ScImportExport::~ScImportExport() COVERITY_NOEXCEPT_FALSE
+ScImportExport::~ScImportExport()
 {
     pUndoDoc.reset();
     pExtOptions.reset();
diff --git a/sc/source/ui/inc/impex.hxx b/sc/source/ui/inc/impex.hxx
index 13e0ef04346f..ecc984f00c2e 100644
--- a/sc/source/ui/inc/impex.hxx
+++ b/sc/source/ui/inc/impex.hxx
@@ -95,7 +95,7 @@ public:
     ScImportExport( ScDocument&, const OUString& );   // Range/cell input
     SC_DLLPUBLIC ScImportExport( ScDocument&, const ScAddress& );
     SC_DLLPUBLIC ScImportExport( ScDocument&, const ScRange& );
-    SC_DLLPUBLIC ~ScImportExport() COVERITY_NOEXCEPT_FALSE;
+    SC_DLLPUBLIC ~ScImportExport();
 
     void SetExtOptions( const ScAsciiOptions& rOpt );
     void SetFilterOptions( const OUString& rFilterOptions );
diff --git a/sc/source/ui/unoobj/textuno.cxx b/sc/source/ui/unoobj/textuno.cxx
index 038342ca4160..e80d6ed1ec3b 100644
--- a/sc/source/ui/unoobj/textuno.cxx
+++ b/sc/source/ui/unoobj/textuno.cxx
@@ -874,7 +874,7 @@ ScCellTextObj::ScCellTextObj(ScDocShell* pDocSh, const 
ScAddress& rP) :
 {
 }
 
-ScCellTextObj::~ScCellTextObj() COVERITY_NOEXCEPT_FALSE
+ScCellTextObj::~ScCellTextObj()
 {
 }
 
diff --git a/svtools/source/uno/popupwindowcontroller.cxx 
b/svtools/source/uno/popupwindowcontroller.cxx
index 91704f589fc8..34139868ea03 100644
--- a/svtools/source/uno/popupwindowcontroller.cxx
+++ b/svtools/source/uno/popupwindowcontroller.cxx
@@ -38,7 +38,7 @@ class PopupWindowControllerImpl
 {
 public:
     PopupWindowControllerImpl();
-    ~PopupWindowControllerImpl() COVERITY_NOEXCEPT_FALSE;
+    ~PopupWindowControllerImpl();
 
     void SetPopupWindow( vcl::Window* pPopupWindow, ToolBox* pToolBox );
     void SetFloatingWindow();
@@ -53,7 +53,7 @@ PopupWindowControllerImpl::PopupWindowControllerImpl()
 {
 }
 
-PopupWindowControllerImpl::~PopupWindowControllerImpl() COVERITY_NOEXCEPT_FALSE
+PopupWindowControllerImpl::~PopupWindowControllerImpl()
 {
     SetPopupWindow(nullptr,nullptr);
     SetFloatingWindow();
diff --git a/svx/source/inc/cell.hxx b/svx/source/inc/cell.hxx
index 51adffb8ca8f..7dca8959ffc4 100644
--- a/svx/source/inc/cell.hxx
+++ b/svx/source/inc/cell.hxx
@@ -186,7 +186,7 @@ private:
 
     /// @throws css::uno::RuntimeException
     SVX_DLLPRIVATE Cell( SdrTableObj& rTableObj );
-    SVX_DLLPRIVATE virtual ~Cell() COVERITY_NOEXCEPT_FALSE override;
+    SVX_DLLPRIVATE virtual ~Cell() override;
 
     Cell(Cell const &) = delete;
     void operator =(Cell const &) = delete;
diff --git a/svx/source/sdr/contact/objectcontact.cxx 
b/svx/source/sdr/contact/objectcontact.cxx
index f36c5412b182..8c98bfe4090f 100644
--- a/svx/source/sdr/contact/objectcontact.cxx
+++ b/svx/source/sdr/contact/objectcontact.cxx
@@ -52,7 +52,7 @@ ObjectContact::ObjectContact()
 {
 }
 
-ObjectContact::~ObjectContact() COVERITY_NOEXCEPT_FALSE
+ObjectContact::~ObjectContact()
 {
     // get rid of all registered contacts
     // #i84257# To avoid that each 'delete pCandidate' again uses
diff --git a/svx/source/table/cell.cxx b/svx/source/table/cell.cxx
index 5a21f93a81e0..0d4bf97d3bb2 100644
--- a/svx/source/table/cell.cxx
+++ b/svx/source/table/cell.cxx
@@ -373,7 +373,7 @@ Cell::Cell(
     }
 }
 
-Cell::~Cell() COVERITY_NOEXCEPT_FALSE
+Cell::~Cell()
 {
     dispose();
 }

Reply via email to