1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:17:35 +00:00

Lagom: Fix TestApp to build after the CObject ref-counting changes

This commit is contained in:
Andreas Kling 2019-10-07 10:58:23 +02:00
parent a7f538fb63
commit 669ee82546

View file

@ -6,7 +6,7 @@ int main(int, char**)
{ {
CEventLoop event_loop; CEventLoop event_loop;
CTimer timer(100, [&] { auto timer = CTimer::construct(100, [&] {
dbg() << "Timer fired, good-bye! :^)"; dbg() << "Timer fired, good-bye! :^)";
event_loop.quit(0); event_loop.quit(0);
}); });