diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-05-08 01:15:41 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-08 01:15:41 +0200 |
commit | 1930d48a388810712c540335b57d9fd3989f4d08 (patch) | |
tree | 6bdbf4aa695599820fc70e96407ddb0bd8874197 | |
parent | 5e733d47a35ffb3779d44a25c4b95fa907b68daf (diff) | |
download | serenity-1930d48a388810712c540335b57d9fd3989f4d08.zip |
GApplication: quit() should have a default exit code of 0.
-rw-r--r-- | LibGUI/GApplication.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<GMenuBar>&&); GAction* action_for_key_event(const GKeyEvent&); |