summaryrefslogtreecommitdiff
path: root/Games/Minesweeper/main.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-07-23 18:20:00 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-23 18:20:00 +0200
commit72a3f69df77465049387764bf29c0d0a92803a43 (patch)
tree160ded21347010299cdb887aa27cc4e3367b5846 /Games/Minesweeper/main.cpp
parentfbae03b73757ed07070c88a1f6b20915cb434cbb (diff)
downloadserenity-72a3f69df77465049387764bf29c0d0a92803a43.zip
LibGUI: Get rid of GWindow::should_exit_event_loop_on_close().
This behavior and API was extremely counter-intuitive since our default behavior was for applications to never exit after you close all of their windows. Now that we exit the event loop by default when the very last GWindow is deleted, we don't have to worry about this.
Diffstat (limited to 'Games/Minesweeper/main.cpp')
-rw-r--r--Games/Minesweeper/main.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Games/Minesweeper/main.cpp b/Games/Minesweeper/main.cpp
index 42029fcfd9..a66f53c06d 100644
--- a/Games/Minesweeper/main.cpp
+++ b/Games/Minesweeper/main.cpp
@@ -14,7 +14,6 @@ int main(int argc, char** argv)
GApplication app(argc, argv);
auto* window = new GWindow;
- window->set_should_exit_event_loop_on_close(true);
window->set_resizable(false);
window->set_title("Minesweeper");
window->set_rect(100, 100, 139, 175);