From 0fc75c38b1389aefe44d98cb72691c40ee46a20b Mon Sep 17 00:00:00 2001 From: nagai Date: Wed, 28 Jul 2004 05:58:49 +0000 Subject: * for backward compatibility (see [ruby-talk:107510], [ruby-talk:107647]) git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6711 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/lib/tk.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ext/tk') diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index dca4b8892..af9c63f72 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -1668,6 +1668,11 @@ module Tk def Tk.update_idletasks update(true) end + def update(idle=nil) + # only for backward compatibility (This never be recommended to use) + Tk.update(idle) + self + end =begin # See tcltklib.c for the reason of why the following methods are disabled. -- cgit