diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-26 06:39:13 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-26 06:39:13 +0100 |
commit | d72575d1967060b691e94f462997fdc43e5cd384 (patch) | |
tree | a108dacc4113b8ddd5e58dc7faf0de79aa585ebf /LibGUI/GEvent.h | |
parent | 57fb0272168371de0fac1d54d0f5830b1565aa94 (diff) | |
download | serenity-d72575d1967060b691e94f462997fdc43e5cd384.zip |
LibGUI: Start bringing up GTextBox in the standalone world.
Diffstat (limited to 'LibGUI/GEvent.h')
-rw-r--r-- | LibGUI/GEvent.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/LibGUI/GEvent.h b/LibGUI/GEvent.h index f697eef8f0..f0b385eeb9 100644 --- a/LibGUI/GEvent.h +++ b/LibGUI/GEvent.h @@ -99,16 +99,6 @@ enum class GMouseButton : byte { Middle = 4, }; -enum GKeyboardKey { - Invalid, - LeftArrow, - RightArrow, - UpArrow, - DownArrow, - Backspace, - Return, -}; - class GKeyEvent final : public GEvent { public: GKeyEvent(Type type, int key) |