mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:37:35 +00:00
LibGUI+Userland: Port StatusBar::set_override_text() to String
This commit is contained in:
parent
5234a30731
commit
92ff12a0d0
8 changed files with 17 additions and 17 deletions
|
@ -1433,7 +1433,7 @@ void MainWidget::update_status_bar(DeprecatedString appended_text)
|
|||
builder.append(" "sv);
|
||||
builder.append(appended_text);
|
||||
}
|
||||
m_statusbar->set_override_text(builder.to_deprecated_string());
|
||||
m_statusbar->set_override_text(builder.to_string().release_value_but_fixme_should_propagate_errors());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue