diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-03-26 20:58:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-03-26 21:45:25 +0300 |
commit | a6978e254af2a83b2b52778b4c59828b07542e5b (patch) | |
tree | 6cdca313b863f3f60825afd7cb62e342906e7495 /src/keyboarddata.h | |
parent | f5ac38e101f180d6f7e5d6b4cd42bcad99af58a6 (diff) | |
download | mv-a6978e254af2a83b2b52778b4c59828b07542e5b.tar.gz mv-a6978e254af2a83b2b52778b4c59828b07542e5b.tar.bz2 mv-a6978e254af2a83b2b52778b4c59828b07542e5b.tar.xz mv-a6978e254af2a83b2b52778b4c59828b07542e5b.zip |
Fix code style and auto check issues.
Diffstat (limited to 'src/keyboarddata.h')
-rw-r--r-- | src/keyboarddata.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/keyboarddata.h b/src/keyboarddata.h index 78a6e990a..bfb0dbed1 100644 --- a/src/keyboarddata.h +++ b/src/keyboarddata.h @@ -20,7 +20,18 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#ifndef KEYBOARDDATA_H +#define KEYBOARDDATA_H + +#include "actionmanager.h" +#include "inputmanager.h" +#include "keyboardconfig.h" +#include "localconsts.h" + #include "utils/gettext.h" +#include "utils/stringutils.h" + +#include <string> struct KeyData { @@ -1003,3 +1014,5 @@ static KeyData const keyData[KeyboardConfig::KEY_TOTAL] = { KeyboardConfig::KEY_NO_VALUE, 50, COND_DEFAULT} }; + +#endif |