From 1930d48a388810712c540335b57d9fd3989f4d08 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 8 May 2019 01:15:41 +0200 Subject: [PATCH] GApplication: quit() should have a default exit code of 0. --- LibGUI/GApplication.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibGUI/GApplication.h b/LibGUI/GApplication.h index db8d3764cc..4242204cbf 100644 --- a/LibGUI/GApplication.h +++ b/LibGUI/GApplication.h @@ -18,7 +18,7 @@ public: ~GApplication(); int exec(); - void quit(int); + void quit(int = 0); void set_menubar(OwnPtr&&); GAction* action_for_key_event(const GKeyEvent&);