diff options
author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-03 10:53:09 +0000 |
---|---|---|
committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-03 10:53:09 +0000 |
commit | e6dd9a0e933a6f806555f0abfcec35686cda2ddc (patch) | |
tree | b5a263e158f59ff59be9ccf179a9dd220496ac91 | |
parent | cc4f0c7963acf2d77988cb935974f2292be2c92e (diff) | |
download | ruby-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.rb | 2 |
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 |