diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-04-10 14:12:19 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-10 14:13:19 +0100 |
commit | 567dbbc5e952170f20673ca795a609220aee792f (patch) | |
tree | bd1552c78782c433a1c692b308a41d9c713c0fd6 /include/vcl/event.hxx | |
parent | ed48a8af3f84ff327a310124a348f6bbe5fa3519 (diff) |
Fix NotifyEvent and IntroWindow bits.
Change-Id: Id12dbb9219a9581dd52d1f820c47f3da47b62187
Diffstat (limited to 'include/vcl/event.hxx')
-rw-r--r-- | include/vcl/event.hxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/include/vcl/event.hxx b/include/vcl/event.hxx index da38cfa98373..d6829d5a76f1 100644 --- a/include/vcl/event.hxx +++ b/include/vcl/event.hxx @@ -436,23 +436,6 @@ public: const CommandEvent* GetCommandEvent() const; }; -inline NotifyEvent::NotifyEvent() -{ - mpWindow = NULL; - mpData = NULL; - mnEventType = MouseNotifyEvent::NONE; - mnRetValue = 0; -} - -inline NotifyEvent::NotifyEvent( MouseNotifyEvent nEventType, vcl::Window* pWindow, - const void* pEvent, long nRet ) -{ - mpWindow = pWindow; - mpData = const_cast<void*>(pEvent); - mnEventType = nEventType; - mnRetValue = nRet; -} - inline const KeyEvent* NotifyEvent::GetKeyEvent() const { if ( (mnEventType == MouseNotifyEvent::KEYINPUT) || (mnEventType == MouseNotifyEvent::KEYUP) ) |