diff options
author | richiesams | 2013-08-18 15:19:22 -0500 |
---|---|---|
committer | richiesams | 2013-08-18 19:53:01 -0500 |
commit | 9051f6213671316c336242274490e17d356fef0e (patch) | |
tree | 72e5bacfec39ca3685aab0d4b6eaa33377e2d35e /engines/zvision | |
parent | 1f653f9a34e3462c0ab13aeaf5f68b7070f45770 (diff) | |
download | scummvm-rg350-9051f6213671316c336242274490e17d356fef0e.tar.gz scummvm-rg350-9051f6213671316c336242274490e17d356fef0e.tar.bz2 scummvm-rg350-9051f6213671316c336242274490e17d356fef0e.zip |
ZVISION: Make MousEvent fully public
Diffstat (limited to 'engines/zvision')
-rw-r--r-- | engines/zvision/mouse_event.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/zvision/mouse_event.h b/engines/zvision/mouse_event.h index 5537bcc4e5..90a093f894 100644 --- a/engines/zvision/mouse_event.h +++ b/engines/zvision/mouse_event.h @@ -34,9 +34,9 @@ class ZVision; class MouseEvent { public: + MouseEvent() : _key(0) {} MouseEvent(uint32 key, const Common::Rect &hotspot, const Common::String hoverCursor); -private: /** The Control key */ uint32 _key; /** @@ -47,7 +47,6 @@ private: /** The cursor to use when hovering over _hotspot */ Common::String _hoverCursor; -public: /** * Does a simple Rect::contains() using _hotspot * |