diff options
Diffstat (limited to 'src/events/keyevent.h')
-rw-r--r-- | src/events/keyevent.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/events/keyevent.h b/src/events/keyevent.h index c0c950639..6ca3d87d8 100644 --- a/src/events/keyevent.h +++ b/src/events/keyevent.h @@ -103,19 +103,19 @@ class KeyEvent: public InputGuiEvent * @param key The key of the event. */ KeyEvent(gcn::Widget *const source, - const bool shiftPressed, - const bool controlPressed, - const bool altPressed, - const bool metaPressed, - const unsigned int type, - const bool numericPad, - const int actionId, - const Key &key) : + const bool shiftPressed, + const bool controlPressed, + const bool altPressed, + const bool metaPressed, + const unsigned int type, + const bool numericPad, + const int actionId, + const Key &key) : InputGuiEvent(source, - shiftPressed, - controlPressed, - altPressed, - metaPressed), + shiftPressed, + controlPressed, + altPressed, + metaPressed), mKey(key), #ifdef USE_SDL2 mText(), |