diff --git a/doc/en/GLib/Timeout.xml b/doc/en/GLib/Timeout.xml index e5363cb73..d31e3035d 100644 --- a/doc/en/GLib/Timeout.xml +++ b/doc/en/GLib/Timeout.xml @@ -12,9 +12,11 @@ It's in a way very similar to a System.Windows.Forms.Timer class. You can use timeouts to invoke routines at specified intervals of time. The diferance between GLib.Timeout and System.Windows.Forms.Timer is that Timeouts are always invoked on the thread that owns the Gtk mainloop - - - + + + Use the method to install timeout handlers into the mainloop. + + void StartClock () { GLib.Timeout.Add(1000, new GLib.TimeoutHandler(update_status)); @@ -28,8 +30,9 @@ The diferance between GLib.Timeout and System.Windows.Forms.Timer is that Timeou //terminate the timeout. return true; } - - Use the method to install timeout handlers into the mainloop. + + + System.Object @@ -62,4 +65,4 @@ Invocation of the delegate may be delayed by other event processing, so this mec - + \ No newline at end of file