diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-17 16:13:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-17 16:13:39 +0300 |
commit | 3e16eec4b33fb8882957b45c83c5c1f2b57625d2 (patch) | |
tree | 1ed0e3286446771049652551454fae234cad6a21 /src/input/keysortfunctor.h | |
parent | 25ef222f6fa5d0c9c13a76b3e2149cfec3b13227 (diff) | |
download | plus-3e16eec4b33fb8882957b45c83c5c1f2b57625d2.tar.gz plus-3e16eec4b33fb8882957b45c83c5c1f2b57625d2.tar.bz2 plus-3e16eec4b33fb8882957b45c83c5c1f2b57625d2.tar.xz plus-3e16eec4b33fb8882957b45c83c5c1f2b57625d2.zip |
Rename keydata into inputactiondata.
Diffstat (limited to 'src/input/keysortfunctor.h')
-rw-r--r-- | src/input/keysortfunctor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/keysortfunctor.h b/src/input/keysortfunctor.h index fae1bedda..fedb4c395 100644 --- a/src/input/keysortfunctor.h +++ b/src/input/keysortfunctor.h @@ -21,7 +21,7 @@ #ifndef INPUT_KEYSORTFUNCTOR_H #define INPUT_KEYSORTFUNCTOR_H -#include "input/keydata.h" +#include "input/inputactiondata.h" #include "localconsts.h" @@ -33,7 +33,7 @@ class KeySortFunctor final return keys[key1].priority >= keys[key2].priority; } - const KeyData *keys; + const InputActionData *keys; }; #endif // INPUT_KEYSORTFUNCTOR_H |