diff options
-rw-r--r-- | apps/csharp/life/src/life_board.cs | 2 | ||||
-rw-r--r-- | reference/csharp/core/src/core_event.cs | 2 | ||||
-rw-r--r-- | reference/csharp/core/src/core_idler.cs | 2 | ||||
-rw-r--r-- | reference/csharp/core/src/core_poll.cs | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/apps/csharp/life/src/life_board.cs b/apps/csharp/life/src/life_board.cs index 26dbf62..61b4d45 100644 --- a/apps/csharp/life/src/life_board.cs +++ b/apps/csharp/life/src/life_board.cs | |||
@@ -62,7 +62,7 @@ public class LifeBoard | |||
62 | { | 62 | { |
63 | lifeTimer = new Efl.LoopTimer(win, 0.1); | 63 | lifeTimer = new Efl.LoopTimer(win, 0.1); |
64 | 64 | ||
65 | lifeTimer.TickEvt += (object sender, EventArgs ev) => { | 65 | lifeTimer.TimerTickEvt += (object sender, EventArgs ev) => { |
66 | Nextgen(); | 66 | Nextgen(); |
67 | if (this.lifeRender != null) | 67 | if (this.lifeRender != null) |
68 | this.lifeRender.Refresh(win); | 68 | this.lifeRender.Refresh(win); |
diff --git a/reference/csharp/core/src/core_event.cs b/reference/csharp/core/src/core_event.cs index b0caac8..7906f41 100644 --- a/reference/csharp/core/src/core_event.cs +++ b/reference/csharp/core/src/core_event.cs | |||
@@ -35,7 +35,7 @@ public class Example | |||
35 | timer.SetName("Timer"); | 35 | timer.SetName("Timer"); |
36 | // To count number of timer triggers | 36 | // To count number of timer triggers |
37 | int tick_count = 0; | 37 | int tick_count = 0; |
38 | timer.TickEvt += (object sender, EventArgs e) => { | 38 | timer.TimerTickEvt += (object sender, EventArgs e) => { |
39 | string message = "Tick {0} from {1}: "; | 39 | string message = "Tick {0} from {1}: "; |
40 | // Depending on the number of timer ticks, it does a different thing | 40 | // Depending on the number of timer ticks, it does a different thing |
41 | switch (tick_count) { | 41 | switch (tick_count) { |
diff --git a/reference/csharp/core/src/core_idler.cs b/reference/csharp/core/src/core_idler.cs index 7e27279..1a0fb5c 100644 --- a/reference/csharp/core/src/core_idler.cs +++ b/reference/csharp/core/src/core_idler.cs | |||
@@ -35,7 +35,7 @@ public class Example | |||
35 | 35 | ||
36 | // Use a timer to exit the application | 36 | // Use a timer to exit the application |
37 | var timer = new Efl.LoopTimer(mainloop, 0.01); | 37 | var timer = new Efl.LoopTimer(mainloop, 0.01); |
38 | timer.TickEvt += (object sender, EventArgs e) => { | 38 | timer.TimerTickEvt += (object sender, EventArgs e) => { |
39 | Console.WriteLine("TIMER: timer callback called, exiting."); | 39 | Console.WriteLine("TIMER: timer callback called, exiting."); |
40 | mainloop.Quit(new Eina.Value(0)); | 40 | mainloop.Quit(new Eina.Value(0)); |
41 | }; | 41 | }; |
diff --git a/reference/csharp/core/src/core_poll.cs b/reference/csharp/core/src/core_poll.cs index 522a36a..502e08c 100644 --- a/reference/csharp/core/src/core_poll.cs +++ b/reference/csharp/core/src/core_poll.cs | |||
@@ -34,7 +34,7 @@ public class Example | |||
34 | 34 | ||
35 | // Use a timer to exit the application | 35 | // Use a timer to exit the application |
36 | var timer = new Efl.LoopTimer(mainloop, 30); | 36 | var timer = new Efl.LoopTimer(mainloop, 30); |
37 | timer.TickEvt += (object sender, EventArgs e) => { | 37 | timer.TimerTickEvt += (object sender, EventArgs e) => { |
38 | Console.WriteLine("\nTIMER: timer callback called, exiting."); | 38 | Console.WriteLine("\nTIMER: timer callback called, exiting."); |
39 | mainloop.Quit(new Eina.Value(0)); | 39 | mainloop.Quit(new Eina.Value(0)); |
40 | }; | 40 | }; |