1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:57:45 +00:00

GApplication: quit() should have a default exit code of 0.

This commit is contained in:
Andreas Kling 2019-05-08 01:15:41 +02:00
parent 5e733d47a3
commit 1930d48a38

View file

@ -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&);