mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-01 00:38:48 +00:00
LibGUI: Define supported functions for using command line arguments
This commit is contained in:
parent
fabc717b39
commit
c4da2a49a5
Notes:
sideshowbarker
2024-07-19 11:47:51 +09:00
Author: https://github.com/deoxxa
Commit: c4da2a49a5
Pull-request: https://github.com/SerenityOS/serenity/pull/633
2 changed files with 9 additions and 0 deletions
|
@ -23,6 +23,10 @@ GApplication::GApplication(int argc, char** argv)
|
|||
s_the = this;
|
||||
m_event_loop = make<CEventLoop>();
|
||||
GWindowServerConnection::the();
|
||||
if (argc > 0)
|
||||
m_invoked_as = argv[0];
|
||||
for (int i = 1; i < argc; i++)
|
||||
m_args.append(argv[i]);
|
||||
}
|
||||
|
||||
GApplication::~GApplication()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue