diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-17 08:39:09 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-17 08:39:09 +0100 |
commit | 10b43f3d1d9983eea9b1bea0b340ab491388354f (patch) | |
tree | daee4e64c6cb2f8d69887359560868dd03fd874b /Kernel/VirtualConsole.cpp | |
parent | 2dc0ef8813f6197bc2c63dc8726dac9d3a2c2d7a (diff) | |
download | serenity-10b43f3d1d9983eea9b1bea0b340ab491388354f.zip |
Kernel: Rename Keyboard to KeyboardDevice.
Diffstat (limited to 'Kernel/VirtualConsole.cpp')
-rw-r--r-- | Kernel/VirtualConsole.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/VirtualConsole.cpp b/Kernel/VirtualConsole.cpp index 3760fa0b63..08bebe8624 100644 --- a/Kernel/VirtualConsole.cpp +++ b/Kernel/VirtualConsole.cpp @@ -3,7 +3,7 @@ #include "i386.h" #include "IO.h" #include "StdLib.h" -#include "Keyboard.h" +#include "KeyboardDevice.h" #include <AK/AKString.h> static byte* s_vga_buffer; @@ -476,7 +476,7 @@ void VirtualConsole::on_char(byte ch) set_cursor(m_cursor_row, m_cursor_column); } -void VirtualConsole::on_key_pressed(Keyboard::Event key) +void VirtualConsole::on_key_pressed(KeyboardDevice::Event key) { if (key.ctrl()) { if (key.character >= 'a' && key.character <= 'z') { |