1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-22 19:12:08 +00:00

LibGUI: Make GUI::Application a Core::Object

Having this on the stack makes whole-program teardown iffy. Turning it
into a Core::Object allows anyone who needs it to extends its lifetime.
This commit is contained in:
Andreas Kling 2020-07-04 14:05:19 +02:00
parent 0d577ab781
commit 1dd1595043
51 changed files with 140 additions and 138 deletions

View file

@ -47,7 +47,7 @@ static RefPtr<GUI::Window> make_toolbox_window();
int main(int argc, char** argv)
{
GUI::Application app(argc, argv);
auto app = GUI::Application::construct(argc, argv);
auto propbox = VBPropertiesWindow::construct();
@ -83,7 +83,7 @@ int main(int argc, char** argv)
GUI::AboutDialog::show("Visual Builder", Gfx::Bitmap::load_from_file("/res/icons/32x32/app-visual-builder.png"), window);
}));
app.set_menubar(move(menubar));
app->set_menubar(move(menubar));
auto toolbox = make_toolbox_window();
toolbox->show();
@ -94,7 +94,7 @@ int main(int argc, char** argv)
form1->load_from_file(argv[1]);
}
return app.exec();
return app->exec();
}
RefPtr<GUI::Window> make_toolbox_window()