1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 18:35:07 +00:00

LibGUI: Make the default window title "GUI::Window"

Instead of "GWindow", that is. :^)
This commit is contained in:
Andreas Kling 2020-03-05 09:25:05 +01:00
parent 41c4e661e5
commit a119d812e1

View file

@ -63,7 +63,7 @@ Window::Window(Core::Object* parent)
{
all_windows->set(this);
m_rect_when_windowless = { 100, 400, 140, 140 };
m_title_when_windowless = "GWindow";
m_title_when_windowless = "GUI::Window";
}
Window::~Window()