Update of /cvsroot/perl-win32-gui/Win32-GUI/docs/GUI/Tutorial
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24631/docs/GUI/Tutorial
Modified Files:
Part4.pod
Log Message:
Bug fixes; re-work of WIn32::GUI::Timer; preparing for 1.03 release
Index: Part4.pod
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/docs/GUI/Tutorial/Part4.pod,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Part4.pod 5 Oct 2005 22:20:49 -0000 1.2
--- Part4.pod 13 Nov 2005 18:57:52 -0000 1.3
***************
*** 56,65 ****
=item *
! The timer keeps firing repeatedly. To disable a timer, use $timer->Kill().
=item *
! To change the interval of a timer (or to re-enable it after a Kill), use
! $timer->Interval(n). Setting an interval of zero disables the timer, just
like Kill.
--- 56,67 ----
=item *
! The timer keeps firing repeatedly. To disable a timer, use C<< $timer->Interval(0) >>
! or C<< $timer->Kill() >>.
=item *
! To change the interval of a timer (or to re-enable it after C<< $timer->Interval(0) >>
! or C<< $timer->Kill() >>), use
! C<< $timer->Interval(n) >>. Setting an interval of zero disables the timer, just
like Kill.
|