mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:27:35 +00:00
Ladybird: Implement EventLoopPluginQt::quit()
This breaks out of the main Qt event loop.
This commit is contained in:
parent
6fff03713c
commit
7362755f30
2 changed files with 6 additions and 0 deletions
|
@ -37,4 +37,9 @@ NonnullRefPtr<Web::Platform::Timer> EventLoopPluginQt::create_timer()
|
||||||
return TimerQt::create();
|
return TimerQt::create();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void EventLoopPluginQt::quit()
|
||||||
|
{
|
||||||
|
QCoreApplication::quit();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,7 @@ public:
|
||||||
virtual void spin_until(Function<bool()> goal_condition) override;
|
virtual void spin_until(Function<bool()> goal_condition) override;
|
||||||
virtual void deferred_invoke(Function<void()>) override;
|
virtual void deferred_invoke(Function<void()>) override;
|
||||||
virtual NonnullRefPtr<Web::Platform::Timer> create_timer() override;
|
virtual NonnullRefPtr<Web::Platform::Timer> create_timer() override;
|
||||||
|
virtual void quit() override;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue