From fe95f1e2ca468907599d252c1f575323e786630a Mon Sep 17 00:00:00 2001 From: nagai Date: Mon, 14 Mar 2005 03:23:01 +0000 Subject: * ext/tk/lib/tk/timer.rb (TkRTTimer): forgot to reset the callback time. So, 'continue' do all callbacks between 'stop' and 'continue'. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/lib/tk.rb | 2 +- ext/tk/lib/tk/timer.rb | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'ext/tk/lib') diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index 0e3f883fbc..d246cd9a0c 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -4002,7 +4002,7 @@ end #Tk.freeze module Tk - RELEASE_DATE = '2005-03-13'.freeze + RELEASE_DATE = '2005-03-14'.freeze autoload :AUTO_PATH, 'tk/variable' autoload :TCL_PACKAGE_PATH, 'tk/variable' diff --git a/ext/tk/lib/tk/timer.rb b/ext/tk/lib/tk/timer.rb index e8379521ba..aa2272f9bb 100644 --- a/ext/tk/lib/tk/timer.rb +++ b/ext/tk/lib/tk/timer.rb @@ -525,10 +525,17 @@ class TkRTTimer < TkTimer def cancel super() @est_time = nil + @cb_start_time = Time.now self end alias stop cancel + def continue(wait=nil) + fail RuntimeError, "is already running" if @running + @cb_start_time = Time.now + super(wait) + end + def set_interval(interval) super(interval) @est_time = nil -- cgit v1.2.3