summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-03 10:53:09 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-08-03 10:53:09 +0000
commite6dd9a0e933a6f806555f0abfcec35686cda2ddc (patch)
treeb5a263e158f59ff59be9ccf179a9dd220496ac91
parentcc4f0c7963acf2d77988cb935974f2292be2c92e (diff)
downloadruby-e6dd9a0e933a6f806555f0abfcec35686cda2ddc.tar.gz
ruby-e6dd9a0e933a6f806555f0abfcec35686cda2ddc.tar.xz
ruby-e6dd9a0e933a6f806555f0abfcec35686cda2ddc.zip
* typo bug
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ext/tk/lib/tk.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb
index d282bbd5e..094163571 100644
--- a/ext/tk/lib/tk.rb
+++ b/ext/tk/lib/tk.rb
@@ -4532,7 +4532,7 @@ class TkScale<TkWindow
elsif slot.kind_of?(Hash) &&
(slot.key?('command') || slot.key?(:command))
slot = _symbolkey2str(slot)
- slot['command'] = __wrap_command_arg(slot.delete('command'))
+ slot['command'] = _wrap_command_arg(slot.delete('command'))
end
super(slot, value)
end