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;
CTimer timer(100, [&] {
auto timer = CTimer::construct(100, [&] {
dbg() << "Timer fired, good-bye! :^)";
event_loop.quit(0);
});