diff options
Diffstat (limited to 'sc/inc/textuno.hxx')
-rw-r--r-- | sc/inc/textuno.hxx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sc/inc/textuno.hxx b/sc/inc/textuno.hxx index ec66fdcf17c0..6a1d1ee946f7 100644 --- a/sc/inc/textuno.hxx +++ b/sc/inc/textuno.hxx @@ -220,6 +220,11 @@ public: ScCellTextCursor(ScCellObj& rText); virtual ~ScCellTextCursor() throw() override; + ScCellTextCursor(ScCellTextCursor const &) = default; + ScCellTextCursor(ScCellTextCursor &&) = default; + ScCellTextCursor & operator =(ScCellTextCursor const &) = default; + ScCellTextCursor & operator =(ScCellTextCursor &&) = default; + ScCellObj& GetCellObj() const { return *mxTextObj; } // SvxUnoTextCursor methods reimplemented here: @@ -246,6 +251,11 @@ public: ScHeaderFooterTextCursor(rtl::Reference<ScHeaderFooterTextObj> const & rText); virtual ~ScHeaderFooterTextCursor() throw() override; + ScHeaderFooterTextCursor(ScHeaderFooterTextCursor const &) = default; + ScHeaderFooterTextCursor(ScHeaderFooterTextCursor &&) = default; + ScHeaderFooterTextCursor & operator =(ScHeaderFooterTextCursor const &) = default; + ScHeaderFooterTextCursor & operator =(ScHeaderFooterTextCursor &&) = default; + // SvxUnoTextCursor methods reimplemented here: virtual css::uno::Reference< css::text::XText > SAL_CALL getText() override; @@ -271,6 +281,11 @@ public: const SvxUnoTextBase& rText ); virtual ~ScDrawTextCursor() throw() override; + ScDrawTextCursor(ScDrawTextCursor const &) = default; + ScDrawTextCursor(ScDrawTextCursor &&) = default; + ScDrawTextCursor & operator =(ScDrawTextCursor const &) = default; + ScDrawTextCursor & operator =(ScDrawTextCursor &&) = default; + // SvxUnoTextCursor methods reimplemented here: virtual css::uno::Reference< css::text::XText > SAL_CALL getText() override; |