summaryrefslogtreecommitdiff
path: root/Widgets/WindowManager.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-13 14:26:37 +0200
committerAndreas Kling <awesomekling@gmail.com>2018-10-13 14:26:37 +0200
commit6ea8ce500c535797d19e853daad616d414f69523 (patch)
tree1ec153a2b27e1a6aa47a8fe336969a0301fae2cf /Widgets/WindowManager.h
parent969334505dbe7115e897a3102ecf234d7c3c4644 (diff)
downloadserenity-6ea8ce500c535797d19e853daad616d414f69523.zip
Use HashMap::remove() in some places that I wanted it.
Diffstat (limited to 'Widgets/WindowManager.h')
-rw-r--r--Widgets/WindowManager.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Widgets/WindowManager.h b/Widgets/WindowManager.h
index 08995bc00d..cb43e393f5 100644
--- a/Widgets/WindowManager.h
+++ b/Widgets/WindowManager.h
@@ -14,6 +14,7 @@ class WindowManager : public Object {
public:
static WindowManager& the();
void addWindow(Window&);
+ void removeWindow(Window&);
void paintWindowFrames();
void notifyTitleChanged(Window&);