diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-02 12:48:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-02 12:48:18 +0300 |
commit | 9ec9cec6b2485654bdee4a828e5a7b0708dcf4f4 (patch) | |
tree | 9c5c497ebedefbeff0d4cf57782c83d5480438bb /src/input/keyboardconfig.h | |
parent | 3f76d07b673de76d7c4e434bd5a214f3480927cb (diff) | |
download | plus-9ec9cec6b2485654bdee4a828e5a7b0708dcf4f4.tar.gz plus-9ec9cec6b2485654bdee4a828e5a7b0708dcf4f4.tar.bz2 plus-9ec9cec6b2485654bdee4a828e5a7b0708dcf4f4.tar.xz plus-9ec9cec6b2485654bdee4a828e5a7b0708dcf4f4.zip |
Add missing const and static into input classes.
Diffstat (limited to 'src/input/keyboardconfig.h')
-rw-r--r-- | src/input/keyboardconfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/keyboardconfig.h b/src/input/keyboardconfig.h index 5e8232508..b43f22790 100644 --- a/src/input/keyboardconfig.h +++ b/src/input/keyboardconfig.h @@ -75,7 +75,7 @@ class KeyboardConfig final static SDLKey getKeyFromEvent(const SDL_Event &event) A_WARN_UNUSED; - int getKeyValueFromEvent(const SDL_Event &event) const A_WARN_UNUSED; + static int getKeyValueFromEvent(const SDL_Event &event) A_WARN_UNUSED; KeysVector *getActionVector(const SDL_Event &event) A_WARN_UNUSED; |