aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-03-14 03:23:01 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-03-14 03:23:01 +0000
commite58c2dc6a8624c8f9e213e757b7a74337b82652f (patch)
tree97a3a359bd538be8100c633b7635697d12ca1ee1 /ext
parenta00bc63ac303f0047c5ed5811dfeaeffa41dea9b (diff)
downloadruby-e58c2dc6a8624c8f9e213e757b7a74337b82652f.tar.gz
* 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/trunk@8145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/tk/lib/tk.rb2
-rw-r--r--ext/tk/lib/tk/timer.rb7
2 files changed, 8 insertions, 1 deletions
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