mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:07:35 +00:00
Applications: Stop lying about string types
This commit is contained in:
parent
5ff80b60cf
commit
a45682dcdc
3 changed files with 3 additions and 3 deletions
|
@ -112,7 +112,7 @@ FindDialog::FindDialog()
|
|||
auto action = options[i];
|
||||
auto& radio = radio_container.add<GUI::RadioButton>();
|
||||
radio.set_enabled(action.enabled);
|
||||
radio.set_text(String::from_deprecated_string(action.title).release_value_but_fixme_should_propagate_errors());
|
||||
radio.set_text(String::from_utf8(action.title).release_value_but_fixme_should_propagate_errors());
|
||||
|
||||
radio.on_checked = [this, i](auto) {
|
||||
m_selected_option = options[i].opt;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue