mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 16:37:47 +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
|
@ -19,9 +19,9 @@ class Statusbar : public Widget {
|
|||
public:
|
||||
virtual ~Statusbar() override = default;
|
||||
|
||||
DeprecatedString text(size_t index = 0) const;
|
||||
void set_text(DeprecatedString);
|
||||
void set_text(size_t index, DeprecatedString);
|
||||
String text(size_t index = 0) const;
|
||||
void set_text(String);
|
||||
void set_text(size_t index, String);
|
||||
void set_override_text(DeprecatedString);
|
||||
|
||||
class Segment final : public Button {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue