diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-10 01:32:44 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-10 01:32:44 +0000 |
| commit | 8666a92b19f5483f8ec2a86997f70f214bf1adcb (patch) | |
| tree | ac8d61ff69964b97fcd75cf933eb71a2bde87596 /ext/tk/lib/tkextlib | |
| parent | 585df77e194a1e015e7c67d2c03e3fe5dc1001e5 (diff) | |
| download | ruby-8666a92b19f5483f8ec2a86997f70f214bf1adcb.tar.gz ruby-8666a92b19f5483f8ec2a86997f70f214bf1adcb.tar.xz ruby-8666a92b19f5483f8ec2a86997f70f214bf1adcb.zip | |
* ext/tk/lib/tk.rb: fix bug on handling __ruby2val_optkeys().
* ext/tk/lib/tk/itemconfig.rb: fix bug on handling
__item_ruby2val_optkeys().
* ext/tk/lib/tk/canvas.rb: didn't check __item_ruby2val_optkeys().
* ext/tk/lib/tkextlib/blt/component.rb: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@8961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tkextlib')
| -rw-r--r-- | ext/tk/lib/tkextlib/SUPPORT_STATUS | 2 | ||||
| -rw-r--r-- | ext/tk/lib/tkextlib/blt/component.rb | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ext/tk/lib/tkextlib/SUPPORT_STATUS b/ext/tk/lib/tkextlib/SUPPORT_STATUS index 2d49676a2..0a5c332d8 100644 --- a/ext/tk/lib/tkextlib/SUPPORT_STATUS +++ b/ext/tk/lib/tkextlib/SUPPORT_STATUS @@ -1,7 +1,7 @@ [ current support status of Tcl/Tk extensions ] - *******<<< RELEASE_DATE of the libraries : 2005/08/04 >>>******* + *******<<< RELEASE_DATE of the libraries : 2005/08/10 >>>******* The following list shows *CURRENT* status when this file was modifyed at last. If you want to add other Tcl/Tk extensions to the planed list diff --git a/ext/tk/lib/tkextlib/blt/component.rb b/ext/tk/lib/tkextlib/blt/component.rb index 87ed838da..0b58195c9 100644 --- a/ext/tk/lib/tkextlib/blt/component.rb +++ b/ext/tk/lib/tkextlib/blt/component.rb @@ -906,6 +906,11 @@ module Tk::BLT methodkeys[key] = keys.delete(key) if keys.key?(key) } + __item_ruby2val_optkeys(nil).each{|key, method| + key = key.to_s + keys[key] = method.call(keys[key]) if keys.has_key?(key) + } + args = itemconfig_hash_kv(nil, keys) else args = [] |
