Changeset 19842
- Timestamp:
- 02/22/07 21:25:17 (2 years ago)
- Files:
-
- juggler/trunk/modules/gadgeteer/gadget/Type/KeyboardMouse/KeyEvent.cpp (modified) (1 diff)
- juggler/trunk/modules/gadgeteer/gadget/Type/KeyboardMouse/KeyEvent.h (modified) (1 diff)
- juggler/trunk/modules/gadgeteer/gadget/Type/KeyboardMouse/MouseEvent.cpp (modified) (1 diff)
- juggler/trunk/modules/gadgeteer/gadget/Type/KeyboardMouse/MouseEvent.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/gadgeteer/gadget/Type/KeyboardMouse/KeyEvent.cpp
r19827 r19842 36 36 37 37 KeyEvent::KeyEvent(const gadget::EventType type, const gadget::Keys key, 38 int mask, unsigned long time, char asciiKey,39 wchar_t unicodeKey)38 const int mask, const unsigned long time, 39 const char asciiKey, const wchar_t unicodeKey) 40 40 : gadget::Event(type, time) 41 41 , mKey(key) juggler/trunk/modules/gadgeteer/gadget/Type/KeyboardMouse/KeyEvent.h
r19841 r19842 75 75 */ 76 76 KeyEvent(const gadget::EventType type, const gadget::Keys key, 77 int mask, unsigned long time,char asciiKey = 0,78 wchar_t unicodeKey = 0);77 const int mask, const unsigned long time, const char asciiKey = 0, 78 const wchar_t unicodeKey = 0); 79 79 80 80 /** juggler/trunk/modules/gadgeteer/gadget/Type/KeyboardMouse/MouseEvent.cpp
r19729 r19842 34 34 35 35 MouseEvent::MouseEvent(const gadget::EventType type, const gadget::Keys button, 36 int x, int y, int globalX, int globalY, int state, 37 unsigned long time) 36 const int x, const int y, const int globalX, 37 const int globalY, const int state, 38 const unsigned long time) 38 39 : gadget::Event(type, time) 39 40 , mButton(button) juggler/trunk/modules/gadgeteer/gadget/Type/KeyboardMouse/MouseEvent.h
r19841 r19842 76 76 */ 77 77 MouseEvent(const gadget::EventType type, const gadget::Keys button, 78 int x, int y, int globalX, int globalY, int state,79 unsigned long time);78 const int x, const int y, const int globalX, const int globalY, 79 const int state, const unsigned long time); 80 80 81 81 /**
