[Libreoffice-commits] core.git: sc/inc sc/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Wed Apr 8 09:27:44 UTC 2020
sc/inc/textuno.hxx | 2 +-
sc/source/ui/unoobj/textuno.cxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 92f1626160b823f8136c03ab067136f866279da9
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Wed Apr 8 09:08:55 2020 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Wed Apr 8 11:27:07 2020 +0200
cid#1461387 Uncaught exception
Change-Id: Ifcd9d3043bf51df6eb6a030481c63758f8501a0b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91872
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sc/inc/textuno.hxx b/sc/inc/textuno.hxx
index f7023ff36835..401387b8dcca 100644
--- a/sc/inc/textuno.hxx
+++ b/sc/inc/textuno.hxx
@@ -362,7 +362,7 @@ class ScCellTextObj final : public ScCellTextData, public SvxUnoText
{
public:
ScCellTextObj(ScDocShell* pDocSh, const ScAddress& rP);
- virtual ~ScCellTextObj() throw() override;
+ virtual ~ScCellTextObj() COVERITY_NOEXCEPT_FALSE override;
};
#endif
diff --git a/sc/source/ui/unoobj/textuno.cxx b/sc/source/ui/unoobj/textuno.cxx
index 61882737b8b6..bba27416dac5 100644
--- a/sc/source/ui/unoobj/textuno.cxx
+++ b/sc/source/ui/unoobj/textuno.cxx
@@ -897,7 +897,7 @@ ScCellTextObj::ScCellTextObj(ScDocShell* pDocSh, const ScAddress& rP) :
{
}
-ScCellTextObj::~ScCellTextObj() throw()
+ScCellTextObj::~ScCellTextObj() COVERITY_NOEXCEPT_FALSE
{
}
More information about the Libreoffice-commits
mailing list