mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:27:35 +00:00
Kernel: Rename Keyboard to KeyboardDevice.
This commit is contained in:
parent
2dc0ef8813
commit
10b43f3d1d
6 changed files with 24 additions and 24 deletions
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "TTY.h"
|
||||
#include "Keyboard.h"
|
||||
#include "KeyboardDevice.h"
|
||||
#include "Console.h"
|
||||
|
||||
class VirtualConsole final : public TTY, public KeyboardClient, public ConsoleImplementation {
|
||||
|
@ -17,7 +17,7 @@ public:
|
|||
|
||||
private:
|
||||
// ^KeyboardClient
|
||||
virtual void on_key_pressed(Keyboard::Event) override;
|
||||
virtual void on_key_pressed(KeyboardDevice::Event) override;
|
||||
|
||||
// ^ConsoleImplementation
|
||||
virtual void on_sysconsole_receive(byte) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue