From dfaa2b6b02b910e9a844381e3662179bf1113eac Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 1 Nov 2018 14:09:21 +0100 Subject: 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. --- Kernel/Keyboard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Kernel/Keyboard.cpp') 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; -- cgit v1.2.3