1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:48:12 +00:00

More coding style changes.

This commit is contained in:
Andreas Kling 2018-12-03 00:39:25 +01:00
parent d824442e3e
commit f6e27c2abe
39 changed files with 216 additions and 216 deletions

View file

@ -23,7 +23,7 @@ Console::~Console()
{
}
bool Console::hasDataAvailableForRead() const
bool Console::has_data_available_for_reading() const
{
return false;
}
@ -53,7 +53,7 @@ void Console::putChar(char ch)
IO::out8(0xe9, ch);
#endif
if (m_implementation)
m_implementation->onConsoleReceive(ch);
m_implementation->on_sysconsole_receive(ch);
}
ConsoleImplementation::~ConsoleImplementation()