diff options
author | Oliver Specht <oliver.specht@cib.de> | 2015-11-07 14:43:19 +0100 |
---|---|---|
committer | Oliver Specht <oliver.specht@cib.de> | 2015-11-11 10:49:30 +0000 |
commit | fa91dd31f39a24329d288d4e1cda28db3a16af0d (patch) | |
tree | 603d7c206ac0ec1f1a08cc9f3bf8835bd8d2fb2f /vcl/source/edit | |
parent | c21ddcdb30b8dd7be56176e00bc2d4780cb342e1 (diff) |
5th step to remove tools/rtti.hxx
tools/rtti.hxx removed
completed the interface of some Sdr.* Items
and removed pseudo items
Change-Id: I0cdcd01494be35b97a27d5985aa908affa96048a
Reviewed-on: https://gerrit.libreoffice.org/19837
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'vcl/source/edit')
-rw-r--r-- | vcl/source/edit/textund2.hxx | 6 | ||||
-rw-r--r-- | vcl/source/edit/textundo.cxx | 6 | ||||
-rw-r--r-- | vcl/source/edit/textundo.hxx | 1 |
3 files changed, 0 insertions, 13 deletions
diff --git a/vcl/source/edit/textund2.hxx b/vcl/source/edit/textund2.hxx index 1fc7cfeab2f8..adb0de9d9a22 100644 --- a/vcl/source/edit/textund2.hxx +++ b/vcl/source/edit/textund2.hxx @@ -30,7 +30,6 @@ private: TextNode* mpNode; // points at the valid not-destroyed object public: - TYPEINFO_OVERRIDE(); TextUndoDelPara( TextEngine* pTextEngine, TextNode* pNode, sal_uInt32 nPara ); virtual ~TextUndoDelPara(); @@ -47,7 +46,6 @@ private: sal_Int32 mnSepPos; public: - TYPEINFO_OVERRIDE(); TextUndoConnectParas( TextEngine* pTextEngine, sal_uInt32 nPara, sal_Int32 nSepPos ); virtual ~TextUndoConnectParas(); @@ -64,7 +62,6 @@ private: sal_Int32 mnSepPos; public: - TYPEINFO_OVERRIDE(); TextUndoSplitPara( TextEngine* pTextEngine, sal_uInt32 nPara, sal_Int32 nSepPos ); virtual ~TextUndoSplitPara(); @@ -81,7 +78,6 @@ private: OUString maText; public: - TYPEINFO_OVERRIDE(); TextUndoInsertChars( TextEngine* pTextEngine, const TextPaM& rTextPaM, const OUString& rStr ); virtual void Undo() override; @@ -99,7 +95,6 @@ private: OUString maText; public: - TYPEINFO_OVERRIDE(); TextUndoRemoveChars( TextEngine* pTextEngine, const TextPaM& rTextPaM, const OUString& rStr ); virtual void Undo() override; @@ -114,7 +109,6 @@ private: TextSelection maSelection; public: - TYPEINFO_OVERRIDE(); TextUndoSetAttribs( TextEngine* pTextEngine, const TextSelection& rESel ); virtual ~TextUndoSetAttribs(); diff --git a/vcl/source/edit/textundo.cxx b/vcl/source/edit/textundo.cxx index 6fc11ef96d4b..91237d356850 100644 --- a/vcl/source/edit/textundo.cxx +++ b/vcl/source/edit/textundo.cxx @@ -29,12 +29,6 @@ #include <svdata.hxx> #include <tools/resid.hxx> -TYPEINIT1( TextUndo, SfxUndoAction ); -TYPEINIT1( TextUndoDelPara, TextUndo ); -TYPEINIT1( TextUndoConnectParas, TextUndo ); -TYPEINIT1( TextUndoSplitPara, TextUndo ); -TYPEINIT1( TextUndoInsertChars, TextUndo ); -TYPEINIT1( TextUndoRemoveChars, TextUndo ); namespace { diff --git a/vcl/source/edit/textundo.hxx b/vcl/source/edit/textundo.hxx index 1adb531b044d..6db0df05a60a 100644 --- a/vcl/source/edit/textundo.hxx +++ b/vcl/source/edit/textundo.hxx @@ -64,7 +64,6 @@ protected: TEParaPortions* GetTEParaPortions() const { return mpTextEngine->mpTEParaPortions; } public: - TYPEINFO_OVERRIDE(); explicit TextUndo( TextEngine* pTextEngine ); virtual ~TextUndo(); |