1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

LibWeb+WebContent: Add EventLoopPlugin::quit() virtual

This allows you to customize breaking out of the system event loop.
This commit is contained in:
Andreas Kling 2022-10-08 10:54:52 +02:00
parent a0d5724a58
commit 829186af7d
4 changed files with 9 additions and 1 deletions

View file

@ -31,4 +31,9 @@ NonnullRefPtr<Timer> EventLoopPluginSerenity::create_timer()
return TimerSerenity::create();
}
void EventLoopPluginSerenity::quit()
{
Core::EventLoop::current().quit(0);
}
}