mono examples: Fix after removing init method

This was preventing "make examples" from working.
This commit is contained in:
Xavi Artigas 2019-02-13 11:31:31 +01:00
parent ce7914c67e
commit f4e5d32107
1 changed files with 1 additions and 3 deletions

View File

@ -18,9 +18,7 @@ class TestMain
Efl.All.Init();
var loop = new Efl.Loop();
var timer = new Efl.LoopTimer(loop, (Efl.LoopTimer t) => {
t.SetInterval(1.0);
});
var timer = new Efl.LoopTimer(loop, interval:1.0);
TestMain listener = new TestMain(loop);