summaryrefslogtreecommitdiff
path: root/include/vcl/vclevent.hxx
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 /include/vcl/vclevent.hxx
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 'include/vcl/vclevent.hxx')
-rw-r--r--include/vcl/vclevent.hxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/vcl/vclevent.hxx b/include/vcl/vclevent.hxx
index 5730999701a9..c7f59dba9aee 100644
--- a/include/vcl/vclevent.hxx
+++ b/include/vcl/vclevent.hxx
@@ -21,7 +21,6 @@
#define INCLUDED_VCL_VCLEVENT_HXX
#include <tools/link.hxx>
-#include <tools/rtti.hxx>
#include <vcl/dllapi.h>
#include <vcl/impdel.hxx>
#include <vcl/vclptr.hxx>
@@ -203,7 +202,6 @@ private:
public:
VclSimpleEvent( sal_uLong n ) { nId = n; }
virtual ~VclSimpleEvent() {}
- TYPEINFO();
sal_uLong GetId() const { return nId; }
};
@@ -217,7 +215,6 @@ private:
public:
VclWindowEvent( vcl::Window* pWin, sal_uLong n, void* pDat = nullptr );
virtual ~VclWindowEvent();
- TYPEINFO_OVERRIDE();
vcl::Window* GetWindow() const { return pWindow; }
void* GetData() const { return pData; }
@@ -232,7 +229,6 @@ private:
public:
VclMenuEvent( Menu* pM, sal_uLong n, sal_uInt16 nPos ) : VclSimpleEvent(n) { pMenu = pM; mnPos = nPos; }
virtual ~VclMenuEvent() {}
- TYPEINFO_OVERRIDE();
Menu* GetMenu() const { return pMenu; }
sal_uInt16 GetItemPos() const { return mnPos; }