diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2023-01-27 17:06:02 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-27 20:33:18 +0000 |
commit | 3cbc0fdbb0c78df399868b6827728c9bae27aa54 (patch) | |
tree | eec7242c72087829094ae6313a4158c0b2978be1 /Kernel/TTY | |
parent | 09a22ddb2ad3da34b1ecc9b232cc2f939e67060a (diff) | |
download | serenity-3cbc0fdbb0c78df399868b6827728c9bae27aa54.zip |
Kernel: Remove declarations for non-existent methods
Diffstat (limited to 'Kernel/TTY')
-rw-r--r-- | Kernel/TTY/VirtualConsole.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Kernel/TTY/VirtualConsole.h b/Kernel/TTY/VirtualConsole.h index 402ce75ea0..5a494a5baa 100644 --- a/Kernel/TTY/VirtualConsole.h +++ b/Kernel/TTY/VirtualConsole.h @@ -121,14 +121,10 @@ private: void clear(); - void inject_string(StringView); - Cell& cell_at(size_t column, size_t row); using ParamVector = Vector<unsigned, 4>; - void on_code_point(u32); - void scroll_down(u16 region_top, u16 region_bottom, size_t count); void scroll_up(u16 region_top, u16 region_bottom, size_t count); void scroll_left(u16 row, u16 column, size_t count); |