diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-07 14:53:02 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-07 14:53:02 +0000 |
| commit | b8e88d9e69526485c6c4fcc0adc2ac158d7cb786 (patch) | |
| tree | 37ee1f403ca1e6699763b08d30545e690e7fd498 /ext/tk/lib/tkextlib/tktable | |
| parent | c36f743cea168d9c641878e3932c06a087d6f65d (diff) | |
| download | ruby-b8e88d9e69526485c6c4fcc0adc2ac158d7cb786.tar.gz ruby-b8e88d9e69526485c6c4fcc0adc2ac158d7cb786.tar.xz ruby-b8e88d9e69526485c6c4fcc0adc2ac158d7cb786.zip | |
* ext/tk/lib/tk.rb: bind-event methods accept multi substitution arguments.
* ext/tk/lib/tk/canvas.rb: ditto.
* ext/tk/lib/tk/canvastag.rb: ditto.
* ext/tk/lib/tk/text.rb: ditto.
* ext/tk/lib/tk/texttag.rb: ditto.
* ext/tk/lib/tkextlib/iwidgets/scrolledcanvas.rb: ditto.
* ext/tk/lib/tkextlib/tktable/tktable.rb: ditto.
* ext/tk/lib/tkextlib/treectrl/tktreectrl.rb: ditto
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7223 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib/tkextlib/tktable')
| -rw-r--r-- | ext/tk/lib/tkextlib/tktable/tktable.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/tk/lib/tkextlib/tktable/tktable.rb b/ext/tk/lib/tkextlib/tktable/tktable.rb index 2f2b14a69..7182983c0 100644 --- a/ext/tk/lib/tkextlib/tktable/tktable.rb +++ b/ext/tk/lib/tkextlib/tktable/tktable.rb @@ -61,10 +61,10 @@ module Tk::TkTable::ConfigMethod itemconfigure(['tag', tagid(tagOrId)], slot, value) end def tag_configinfo(tagOrId, slot=nil) - itemconfigure(['tag', tagid(tagOrId)], slot) + itemconfiginfo(['tag', tagid(tagOrId)], slot) end def current_tag_configinfo(tagOrId, slot=nil) - itemconfigure(['tag', tagid(tagOrId)], slot) + current_itemconfiginfo(['tag', tagid(tagOrId)], slot) end def window_cget(tagOrId, option) @@ -74,10 +74,10 @@ module Tk::TkTable::ConfigMethod itemconfigure(['window', tagid(tagOrId)], slot, value) end def window_configinfo(tagOrId, slot=nil) - itemconfigure(['window', tagid(tagOrId)], slot) + itemconfiginfo(['window', tagid(tagOrId)], slot) end def current_window_configinfo(tagOrId, slot=nil) - itemconfigure(['window', tagid(tagOrId)], slot) + current_itemconfiginfo(['window', tagid(tagOrId)], slot) end private :itemcget, :itemconfigure |
