diff options
Diffstat (limited to 'src/guichan/inputevent.cpp')
-rw-r--r-- | src/guichan/inputevent.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/guichan/inputevent.cpp b/src/guichan/inputevent.cpp index 53ae91442..4b0bec69d 100644 --- a/src/guichan/inputevent.cpp +++ b/src/guichan/inputevent.cpp @@ -52,11 +52,11 @@ namespace gcn { - InputEvent::InputEvent(Widget* source, - bool shiftPressed, - bool controlPressed, - bool altPressed, - bool metaPressed) + InputEvent::InputEvent(Widget *const source, + const bool shiftPressed, + const bool controlPressed, + const bool altPressed, + const bool metaPressed) :Event(source), mShiftPressed(shiftPressed), mControlPressed(controlPressed), |