mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 16:25:06 +00:00
Userland: Set Button text using the new String class
This commit is contained in:
parent
b5cb9a9ebb
commit
e39adc4772
49 changed files with 134 additions and 127 deletions
|
@ -122,7 +122,7 @@ FindInFilesWidget::FindInFilesWidget()
|
|||
|
||||
m_textbox = top_container.add<GUI::TextBox>();
|
||||
|
||||
m_button = top_container.add<GUI::Button>("Find in files");
|
||||
m_button = top_container.add<GUI::Button>(String::from_utf8("Find in files"sv).release_value_but_fixme_should_propagate_errors());
|
||||
m_button->set_fixed_width(100);
|
||||
|
||||
m_result_view = add<GUI::TableView>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue