diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-04-18 08:43:10 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-04-18 08:43:10 +0000 |
| commit | 228b59bb404c38caa3611302d5107d005db1417d (patch) | |
| tree | 7d4447e7b795bd31e8bb0569643e2e611fc09f63 /ext/tk/lib | |
| parent | 7d6ef6186ed0b9a81be8616bf3436a89888153ef (diff) | |
| download | ruby-228b59bb404c38caa3611302d5107d005db1417d.tar.gz ruby-228b59bb404c38caa3611302d5107d005db1417d.tar.xz ruby-228b59bb404c38caa3611302d5107d005db1417d.zip | |
* ext/tk/lib/multi-tk.rb: add a binding to a container for a slave IP.
* ext/tk/lib/tk.rb: update RELEASE_DATE.
* ext/tk/tcltklib.c: forget to reset a Tcl interpreter.
* ext/tk/stubs.c: fix potential bugs about handling rb_argv0.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib')
| -rw-r--r-- | ext/tk/lib/multi-tk.rb | 1 | ||||
| -rw-r--r-- | ext/tk/lib/tk.rb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ext/tk/lib/multi-tk.rb b/ext/tk/lib/multi-tk.rb index 84c2322d5..8fc99dff7 100644 --- a/ext/tk/lib/multi-tk.rb +++ b/ext/tk/lib/multi-tk.rb @@ -944,6 +944,7 @@ class MultiTkIp dup_keys['fill'] = :both unless dup_keys.key?('fill') dup_keys['expand'] = true unless dup_keys.key?('expand') c = TkFrame.new(top, :container=>true).pack(dup_keys) + c.bind('Destroy', proc{top.destroy}) # return keys loadTk_keys['use'] = TkWinfo.id(c) diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index bf053058d..45468a3bf 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -4559,7 +4559,7 @@ end #Tk.freeze module Tk - RELEASE_DATE = '2006-04-06'.freeze + RELEASE_DATE = '2006-04-18'.freeze autoload :AUTO_PATH, 'tk/variable' autoload :TCL_PACKAGE_PATH, 'tk/variable' |
