diff options
Diffstat (limited to 'base/keyboard_codes_linux.h')
-rw-r--r-- | base/keyboard_codes_linux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/keyboard_codes_linux.h b/base/keyboard_codes_linux.h index 1ddb73f..a56f48f 100644 --- a/base/keyboard_codes_linux.h +++ b/base/keyboard_codes_linux.h @@ -36,7 +36,7 @@ namespace base { -enum { +typedef enum { VKEY_BACK = GDK_BackSpace, VKEY_TAB = GDK_Tab, VKEY_CLEAR = GDK_Clear, @@ -207,7 +207,7 @@ enum { VKEY_PA1 = 0xFD, VKEY_OEM_CLEAR = 0xFE, VKEY_UNKNOWN = 0 -}; +} KeyboardCode; } // namespace views |