1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:07:47 +00:00

LibGUI: Make Window::set_title() take a String

This commit is contained in:
Andreas Kling 2021-04-16 20:06:43 +02:00
parent 942a5afd23
commit 050648b270
2 changed files with 4 additions and 4 deletions

View file

@ -81,7 +81,7 @@ public:
int window_id() const { return m_window_id; }
String title() const;
void set_title(const StringView&);
void set_title(String);
Color background_color() const { return m_background_color; }
void set_background_color(Color color) { m_background_color = color; }