ソースを参照

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

Instead of "GWindow", that is. :^)
Andreas Kling 5 年 前
コミット
a119d812e1
1 ファイル変更1 行追加1 行削除
  1. 1 1
      Libraries/LibGUI/Window.cpp

+ 1 - 1
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()