diff options
Diffstat (limited to 'Userland/Libraries/LibGUI')
-rw-r--r-- | Userland/Libraries/LibGUI/EmojiInputDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/EmojiInputDialog.cpp b/Userland/Libraries/LibGUI/EmojiInputDialog.cpp index 682de4192d..9e89a151fe 100644 --- a/Userland/Libraries/LibGUI/EmojiInputDialog.cpp +++ b/Userland/Libraries/LibGUI/EmojiInputDialog.cpp @@ -179,7 +179,7 @@ auto EmojiInputDialog::supported_emoji() -> Vector<Emoji> StringBuilder builder; Vector<u32> code_points; - basename.for_each_split_view('_', false, [&](auto segment) { + basename.for_each_split_view('_', SplitBehavior::Nothing, [&](auto segment) { auto code_point = AK::StringUtils::convert_to_uint_from_hex<u32>(segment.substring_view(2)); VERIFY(code_point.has_value()); |