diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-01 14:09:21 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-01 14:11:22 +0100 |
commit | dfaa2b6b02b910e9a844381e3662179bf1113eac (patch) | |
tree | 070c42ccbedc03a826fdc3000efe0c22e2a5391a /Kernel/Keyboard.cpp | |
parent | fd03776443459dc8504313afdca3235e73e508f4 (diff) | |
download | serenity-dfaa2b6b02b910e9a844381e3662179bf1113eac.zip |
Convert VirtualConsole to the new coding style.
I'm still playing around with finding a style that I like.
This is starting to feel pleasing to the eye. I guess this is how long
it took me to break free from the habit of my previous Qt/WK coding style.
Diffstat (limited to 'Kernel/Keyboard.cpp')
-rw-r--r-- | Kernel/Keyboard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Keyboard.cpp b/Kernel/Keyboard.cpp index b2a61b7bc1..fad3164a0b 100644 --- a/Kernel/Keyboard.cpp +++ b/Kernel/Keyboard.cpp @@ -69,7 +69,7 @@ void Keyboard::handleIRQ() case '2': case '3': case '4': - VirtualConsole::switchTo(map[ch] - '0' - 1); + VirtualConsole::switch_to(map[ch] - '0' - 1); break; default: break; |