mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 19:07:34 +00:00
Everywhere: Remove the AK::
qualifier from Stream usages
This commit is contained in:
parent
874c7bba28
commit
43f98ac6e1
73 changed files with 275 additions and 278 deletions
|
@ -12,13 +12,13 @@
|
|||
namespace Line {
|
||||
namespace VT {
|
||||
|
||||
ErrorOr<void> save_cursor(AK::Stream&);
|
||||
ErrorOr<void> restore_cursor(AK::Stream&);
|
||||
ErrorOr<void> clear_to_end_of_line(AK::Stream&);
|
||||
ErrorOr<void> clear_lines(size_t count_above, size_t count_below, AK::Stream&);
|
||||
ErrorOr<void> move_relative(int x, int y, AK::Stream&);
|
||||
ErrorOr<void> move_absolute(u32 x, u32 y, AK::Stream&);
|
||||
ErrorOr<void> apply_style(Style const&, AK::Stream&, bool is_starting = true);
|
||||
ErrorOr<void> save_cursor(Stream&);
|
||||
ErrorOr<void> restore_cursor(Stream&);
|
||||
ErrorOr<void> clear_to_end_of_line(Stream&);
|
||||
ErrorOr<void> clear_lines(size_t count_above, size_t count_below, Stream&);
|
||||
ErrorOr<void> move_relative(int x, int y, Stream&);
|
||||
ErrorOr<void> move_absolute(u32 x, u32 y, Stream&);
|
||||
ErrorOr<void> apply_style(Style const&, Stream&, bool is_starting = true);
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue