From 67e0177c0b04a9d89967b1bbda05e985fdd7348e Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Thu, 15 Mar 2007 15:27:03 +0000 Subject: [PATCH] Patch from lluis@ximian.com svn path=/trunk/gtk-sharp/; revision=74383 --- doc/en/GLib/Timeout.xml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) 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