WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=1dc997516fdcee4ff0aa47a0f26f9d4a2ded11cd
commit 1dc997516fdcee4ff0aa47a0f26f9d4a2ded11cd Author: Xavi Artigas <[email protected]> Date: Wed Mar 6 04:07:11 2019 -0800 Wiki page events.md changed with summary [Adapt to latest EFL# syntax] by Xavi Artigas --- pages/develop/guides/csharp/core/events.md.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pages/develop/guides/csharp/core/events.md.txt b/pages/develop/guides/csharp/core/events.md.txt index 0797d1cfd..1dc7ccb7d 100644 --- a/pages/develop/guides/csharp/core/events.md.txt +++ b/pages/develop/guides/csharp/core/events.md.txt @@ -86,10 +86,7 @@ public class Example mainloop.PollHighEvt += PollCb; // This timer will control events fired by the main loop - var timer = new Efl.LoopTimer(mainloop, (Efl.LoopTimer etimer) => { - // Trigger every 100ms - etimer.SetInterval(0.1); - }); + var timer = new Efl.LoopTimer(mainloop, 0.1); timer.SetName("Timer"); // To count number of timer triggers int tick_count = 0; --
