Everywhere: codepoint => code point

This commit is contained in:
Andreas Kling 2021-06-01 10:01:11 +02:00
commit 12a42edd13
Notes: sideshowbarker 2024-07-18 17:03:28 +09:00
18 changed files with 240 additions and 240 deletions

View file

@ -379,10 +379,10 @@ bool EventHandler::focus_previous_element()
return false;
}
constexpr bool should_ignore_keydown_event(u32 codepoint)
constexpr bool should_ignore_keydown_event(u32 code_point)
{
// FIXME: There are probably also keys with non-zero codepoints that should be filtered out.
return codepoint == 0;
// FIXME: There are probably also keys with non-zero code points that should be filtered out.
return code_point == 0;
}
bool EventHandler::handle_keydown(KeyCode key, unsigned modifiers, u32 code_point)