summaryrefslogtreecommitdiff
path: root/sc/inc/textuno.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2021-04-30 08:20:03 +0200
committerStephan Bergmann <sbergman@redhat.com>2021-05-02 17:02:28 +0200
commit10d29c390dd58ed629dd27fe5ed35fae28eceec3 (patch)
tree7476cbb90fff182c5bec0a5a1ef9c41a3ad29f19 /sc/inc/textuno.hxx
parenta9243e626193ab4efe3a618413886773336a38e6 (diff)
throw() -> noexcept, part 2/3: Automatic loplugin:noexcept rewrite
Change-Id: I076f16d0536b534abf0ced4d76051eadb4c0e033 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114949 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc/inc/textuno.hxx')
-rw-r--r--sc/inc/textuno.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/textuno.hxx b/sc/inc/textuno.hxx
index be16478bbbfd..f04892515209 100644
--- a/sc/inc/textuno.hxx
+++ b/sc/inc/textuno.hxx
@@ -218,7 +218,7 @@ class ScCellTextCursor final : public SvxUnoTextCursor
public:
ScCellTextCursor(ScCellObj& rText);
- virtual ~ScCellTextCursor() throw() override;
+ virtual ~ScCellTextCursor() noexcept override;
ScCellTextCursor(ScCellTextCursor const &) = default;
ScCellTextCursor(ScCellTextCursor &&) = default;
@@ -246,7 +246,7 @@ private:
public:
ScHeaderFooterTextCursor(rtl::Reference<ScHeaderFooterTextObj> const & rText);
- virtual ~ScHeaderFooterTextCursor() throw() override;
+ virtual ~ScHeaderFooterTextCursor() noexcept override;
ScHeaderFooterTextCursor(ScHeaderFooterTextCursor const &) = default;
ScHeaderFooterTextCursor(ScHeaderFooterTextCursor &&) = default;
@@ -273,7 +273,7 @@ private:
public:
ScDrawTextCursor( const css::uno::Reference< css::text::XText >& xParent,
const SvxUnoTextBase& rText );
- virtual ~ScDrawTextCursor() throw() override;
+ virtual ~ScDrawTextCursor() noexcept override;
ScDrawTextCursor(ScDrawTextCursor const &) = default;
ScDrawTextCursor(ScDrawTextCursor &&) = default;
@@ -315,7 +315,7 @@ class ScEditEngineTextObj final : public ScSimpleEditSourceHelper, public SvxUno
{
public:
ScEditEngineTextObj();
- virtual ~ScEditEngineTextObj() throw() override;
+ virtual ~ScEditEngineTextObj() noexcept override;
void SetText( const EditTextObject& rTextObject );
std::unique_ptr<EditTextObject> CreateTextObject();