summaryrefslogtreecommitdiff
path: root/src/guichan/keyevent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/guichan/keyevent.cpp')
-rw-r--r--src/guichan/keyevent.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/guichan/keyevent.cpp b/src/guichan/keyevent.cpp
index 1bc8fe9d2..f9c14bb59 100644
--- a/src/guichan/keyevent.cpp
+++ b/src/guichan/keyevent.cpp
@@ -52,20 +52,20 @@
namespace gcn
{
KeyEvent::KeyEvent(Widget* source,
- bool isShiftPressed,
- bool isControlPressed,
- bool isAltPressed,
- bool isMetaPressed,
+ bool shiftPressed,
+ bool controlPressed,
+ bool altPressed,
+ bool metaPressed,
unsigned int type,
- bool isNumericPad,
+ bool numericPad,
const Key& key)
:InputEvent(source,
- isShiftPressed,
- isControlPressed,
- isAltPressed,
- isMetaPressed),
+ shiftPressed,
+ controlPressed,
+ altPressed,
+ metaPressed),
mType(type),
- mIsNumericPad(isNumericPad),
+ mIsNumericPad(numericPad),
mKey(key)
{