1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:38:12 +00:00

Ladybird: Implement EventLoopPluginQt::quit()

This breaks out of the main Qt event loop.
This commit is contained in:
Andreas Kling 2022-10-08 11:01:17 +02:00 committed by Andrew Kaster
parent 6fff03713c
commit 7362755f30
2 changed files with 6 additions and 0 deletions

View file

@ -37,4 +37,9 @@ NonnullRefPtr<Web::Platform::Timer> EventLoopPluginQt::create_timer()
return TimerQt::create();
}
void EventLoopPluginQt::quit()
{
QCoreApplication::quit();
}
}