mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:37:34 +00:00
LibGUI+Userland: Port StatusBar::text() and set_text functions to String
This commit is contained in:
parent
2064f544c6
commit
2029750519
27 changed files with 88 additions and 88 deletions
|
@ -179,5 +179,5 @@ void CharacterMapWidget::update_statusbar()
|
|||
builder.appendff("U+{:04X}", code_point);
|
||||
if (auto display_name = Unicode::code_point_display_name(code_point); display_name.has_value())
|
||||
builder.appendff(" - {}", display_name.value());
|
||||
m_statusbar->set_text(builder.to_deprecated_string());
|
||||
m_statusbar->set_text(builder.to_string().release_value_but_fixme_should_propagate_errors());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue