From 671262feb4afb961f35e64f93d24f7768b3bde65 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: http://svn.ruby-lang.org/repos/ruby/trunk@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 0e3f883fb..d246cd9a0 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 e8379521b..aa2272f9b 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