mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:37:36 +00:00
LibGUI: Make some API's take String instead of StringView
This commit is contained in:
parent
36f27094d0
commit
0e4eb62dd8
6 changed files with 20 additions and 20 deletions
|
@ -37,8 +37,8 @@ public:
|
|||
|
||||
String text() const;
|
||||
String text(int index) const;
|
||||
void set_text(const StringView&);
|
||||
void set_text(int index, const StringView&);
|
||||
void set_text(String);
|
||||
void set_text(int index, String);
|
||||
|
||||
protected:
|
||||
explicit Statusbar(int label_count = 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue