diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/inc/IAnyRefDialog.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/inc/anyrefdg.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/miscdlgs/anyrefdg.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/IAnyRefDialog.hxx b/sc/source/ui/inc/IAnyRefDialog.hxx index 0e4f81f41572..a9c876f15f0d 100644 --- a/sc/source/ui/inc/IAnyRefDialog.hxx +++ b/sc/source/ui/inc/IAnyRefDialog.hxx @@ -32,7 +32,7 @@ namespace formula class SAL_NO_VTABLE IAnyRefDialog : public formula::IControlReferenceHandler { public: - virtual ~IAnyRefDialog(){} + virtual ~IAnyRefDialog() COVERITY_NOEXCEPT_FALSE {} virtual void SetReference( const ScRange& rRef, ScDocument* pDoc ) = 0; virtual void RefInputStart( formula::RefEdit* pEdit, formula::RefButton* pButton = nullptr ) = 0; diff --git a/sc/source/ui/inc/anyrefdg.hxx b/sc/source/ui/inc/anyrefdg.hxx index cf5e7390cd6c..1417662956be 100644 --- a/sc/source/ui/inc/anyrefdg.hxx +++ b/sc/source/ui/inc/anyrefdg.hxx @@ -106,7 +106,7 @@ protected: public: ScRefHandler(SfxDialogController &rController, SfxBindings* pB, bool bBindRef); - virtual ~ScRefHandler() override; + virtual ~ScRefHandler() COVERITY_NOEXCEPT_FALSE override; virtual void SetReference( const ScRange& rRef, ScDocument* pDoc ) override = 0; virtual void AddRefEntry() override; diff --git a/sc/source/ui/miscdlgs/anyrefdg.cxx b/sc/source/ui/miscdlgs/anyrefdg.cxx index 7a498aced9cd..168070ea4e64 100644 --- a/sc/source/ui/miscdlgs/anyrefdg.cxx +++ b/sc/source/ui/miscdlgs/anyrefdg.cxx @@ -605,7 +605,7 @@ bool ScRefHandler::EnterRefMode() return m_bInRefMode = true; } -ScRefHandler::~ScRefHandler() +ScRefHandler::~ScRefHandler() COVERITY_NOEXCEPT_FALSE { disposeRefHandler(); } |