summaryrefslogtreecommitdiff
path: root/LibGUI/GWindow.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-03 21:03:12 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-03 21:04:16 +0200
commitaa03a07e6148c1609799f464197aab937d1287e2 (patch)
treedc6aac92aa201ed531d4ab6a79c78c40b6a63307 /LibGUI/GWindow.cpp
parenta22774ee3fc609177a56c6d6ac992b86026abdbc (diff)
downloadserenity-aa03a07e6148c1609799f464197aab937d1287e2.zip
Taskbar+LibGUI: More work on bringup.
Diffstat (limited to 'LibGUI/GWindow.cpp')
-rw-r--r--LibGUI/GWindow.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/LibGUI/GWindow.cpp b/LibGUI/GWindow.cpp
index 6a3bb5a754..59d0280139 100644
--- a/LibGUI/GWindow.cpp
+++ b/LibGUI/GWindow.cpp
@@ -258,6 +258,9 @@ void GWindow::event(GEvent& event)
return;
}
+ if (event.type() == GEvent::WM_WindowAdded || event.type() == GEvent::WM_WindowRemoved || event.type() == GEvent::WM_WindowStateChanged)
+ return wm_event(static_cast<GWMEvent&>(event));
+
GObject::event(event);
}
@@ -422,3 +425,7 @@ void GWindow::set_modal(bool modal)
ASSERT(!m_window_id);
m_modal = modal;
}
+
+void GWindow::wm_event(GWMEvent&)
+{
+}