summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorOliver Specht <oliver.specht@cib.de>2015-11-07 14:43:19 +0100
committerOliver Specht <oliver.specht@cib.de>2015-11-11 10:49:30 +0000
commitfa91dd31f39a24329d288d4e1cda28db3a16af0d (patch)
tree603d7c206ac0ec1f1a08cc9f3bf8835bd8d2fb2f /vcl/source
parentc21ddcdb30b8dd7be56176e00bc2d4780cb342e1 (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')
-rw-r--r--vcl/source/app/vclevent.cxx3
-rw-r--r--vcl/source/edit/textund2.hxx6
-rw-r--r--vcl/source/edit/textundo.cxx6
-rw-r--r--vcl/source/edit/textundo.hxx1
-rw-r--r--vcl/source/gdi/extoutdevdata.cxx2
-rw-r--r--vcl/source/gdi/pdfextoutdevdata.cxx1
6 files changed, 0 insertions, 19 deletions
diff --git a/vcl/source/app/vclevent.cxx b/vcl/source/app/vclevent.cxx
index c6a96b95c3bc..f0c281763de5 100644
--- a/vcl/source/app/vclevent.cxx
+++ b/vcl/source/app/vclevent.cxx
@@ -28,9 +28,6 @@
using ::com::sun::star::uno::Reference;
using ::com::sun::star::accessibility::XAccessible;
-TYPEINIT0(VclSimpleEvent);
-TYPEINIT1(VclWindowEvent, VclSimpleEvent);
-TYPEINIT1(VclMenuEvent, VclSimpleEvent);
VclAccessibleEvent::VclAccessibleEvent( sal_uLong n, const Reference<XAccessible>& rxAccessible ) :
VclSimpleEvent(n),
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();
diff --git a/vcl/source/gdi/extoutdevdata.cxx b/vcl/source/gdi/extoutdevdata.cxx
index 593ab36439e7..49f188c850f7 100644
--- a/vcl/source/gdi/extoutdevdata.cxx
+++ b/vcl/source/gdi/extoutdevdata.cxx
@@ -18,12 +18,10 @@
*/
#include <vcl/extoutdevdata.hxx>
-#include <tools/rtti.hxx>
namespace vcl
{
-TYPEINIT0(ExtOutDevData);
ExtOutDevData::~ExtOutDevData()
{
}
diff --git a/vcl/source/gdi/pdfextoutdevdata.cxx b/vcl/source/gdi/pdfextoutdevdata.cxx
index 5d4633146530..5a1fd37f7c07 100644
--- a/vcl/source/gdi/pdfextoutdevdata.cxx
+++ b/vcl/source/gdi/pdfextoutdevdata.cxx
@@ -490,7 +490,6 @@ bool PageSyncData::PlaySyncPageAct( PDFWriter& rWriter, sal_uInt32& rCurGDIMtfAc
return bRet;
}
-TYPEINIT1(PDFExtOutDevData,ExtOutDevData);
PDFExtOutDevData::PDFExtOutDevData( const OutputDevice& rOutDev ) :
mrOutDev ( rOutDev ),
mbTaggedPDF ( false ),