summaryrefslogtreecommitdiff
path: root/Applications
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2020-08-05 16:31:20 -0400
committerAndreas Kling <kling@serenityos.org>2020-08-05 22:33:42 +0200
commitce95628b7f96924e851d8cedac1d784547600cd3 (patch)
tree533dad9932cfc954ead3cfc776a27a9f7c4333f9 /Applications
parent19ac1f6368c91cc00a68717001ea4eae65567a47 (diff)
downloadserenity-ce95628b7f96924e851d8cedac1d784547600cd3.zip
Unicode: Try s/codepoint/code_point/g again
This time, without trailing 's'. Ran: git grep -l 'codepoint' | xargs sed -ie 's/codepoint/code_point/g
Diffstat (limited to 'Applications')
-rw-r--r--Applications/KeyboardMapper/KeyboardMapperWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/KeyboardMapper/KeyboardMapperWidget.cpp b/Applications/KeyboardMapper/KeyboardMapperWidget.cpp
index 72283e19aa..1d4c26e051 100644
--- a/Applications/KeyboardMapper/KeyboardMapperWidget.cpp
+++ b/Applications/KeyboardMapper/KeyboardMapperWidget.cpp
@@ -267,7 +267,7 @@ void KeyboardMapperWidget::set_current_map(const String current_map)
continue;
AK::StringBuilder sb;
- sb.append_codepoint(map[index]);
+ sb.append_code_point(map[index]);
m_keys.at(k)->set_text(sb.to_string());
}