diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-16 13:16:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-16 13:16:49 +0300 |
commit | 9ca8495acdebb975a7b0777e11d7c599e61c0185 (patch) | |
tree | c11e7b3e7691d21b79a7fe73fcee782552b63398 /src/gui/base/keyevent.cpp | |
parent | 3ae82048ca8636ce03e71bdd4c11f60594cfc698 (diff) | |
download | ManaVerse-9ca8495acdebb975a7b0777e11d7c599e61c0185.tar.gz ManaVerse-9ca8495acdebb975a7b0777e11d7c599e61c0185.tar.bz2 ManaVerse-9ca8495acdebb975a7b0777e11d7c599e61c0185.tar.xz ManaVerse-9ca8495acdebb975a7b0777e11d7c599e61c0185.zip |
move inputevent into events directory.
Diffstat (limited to 'src/gui/base/keyevent.cpp')
-rw-r--r-- | src/gui/base/keyevent.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/base/keyevent.cpp b/src/gui/base/keyevent.cpp index 35c4f06a5..d8d954bf3 100644 --- a/src/gui/base/keyevent.cpp +++ b/src/gui/base/keyevent.cpp @@ -79,11 +79,11 @@ namespace gcn const unsigned int type, const bool numericPad, const Key& key) : - InputEvent(source, - shiftPressed, - controlPressed, - altPressed, - metaPressed), + InputGuiEvent(source, + shiftPressed, + controlPressed, + altPressed, + metaPressed), mType(type), mIsNumericPad(numericPad), mKey(key) |