summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-03-05 09:25:05 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-05 09:25:05 +0100
commita119d812e171bc7e7e2ee98e79942d460b29da97 (patch)
treeae5b4593c740b80a506db046cb58b1fc758af568
parent41c4e661e5de49409692a2191f7807dcc8dd2898 (diff)
downloadserenity-a119d812e171bc7e7e2ee98e79942d460b29da97.zip
LibGUI: Make the default window title "GUI::Window"
Instead of "GWindow", that is. :^)
-rw-r--r--Libraries/LibGUI/Window.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGUI/Window.cpp b/Libraries/LibGUI/Window.cpp
index b9b81865f1..07aab281d7 100644
--- a/Libraries/LibGUI/Window.cpp
+++ b/Libraries/LibGUI/Window.cpp
@@ -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()