summaryrefslogtreecommitdiff
path: root/LibGUI/GObject.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-01-30 20:03:52 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-01-30 20:03:52 +0100
commit37ab7b7a8cd3a9f3987c6d8845f9728cdd07095f (patch)
tree23fff0d31366abbe2a04c2a849ef2d6321c6dfe7 /LibGUI/GObject.cpp
parent5c25f0c4db9584adacd8b0446fdc0d5524fe7b31 (diff)
downloadserenity-37ab7b7a8cd3a9f3987c6d8845f9728cdd07095f.zip
LibGUI: Implement destroying individual windows without exiting the process.
Diffstat (limited to 'LibGUI/GObject.cpp')
-rw-r--r--LibGUI/GObject.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GObject.cpp b/LibGUI/GObject.cpp
index 13320cb265..881f220317 100644
--- a/LibGUI/GObject.cpp
+++ b/LibGUI/GObject.cpp
@@ -69,7 +69,7 @@ void GObject::stopTimer()
m_timerID = 0;
}
-void GObject::deleteLater()
+void GObject::delete_later()
{
GEventLoop::main().post_event(this, make<GEvent>(GEvent::DeferredDestroy));
}