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
commit 1930d48a38
Notes: sideshowbarker 2024-07-19 14:12:13 +09:00

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