[Libreoffice-commits] core.git: sc/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Sat Jul 20 17:17:57 UTC 2019
sc/source/ui/inc/IAnyRefDialog.hxx | 2 +-
sc/source/ui/inc/anyrefdg.hxx | 2 +-
sc/source/ui/miscdlgs/anyrefdg.cxx | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit c9a64e41d2819e2ac474c9dc302972334ca86e03
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Sat Jul 20 14:38:34 2019 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat Jul 20 19:16:57 2019 +0200
cid#1399336 Uncaught exception
Change-Id: Ia2b0fee5be67009731af8cc79088020e770dddbf
Reviewed-on: https://gerrit.libreoffice.org/76005
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
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();
}
More information about the Libreoffice-commits
mailing list