summaryrefslogtreecommitdiff
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
commitebe22aafa2d04921d5ee914be3e8ca607df0f12f (patch)
treeb5a263e158f59ff59be9ccf179a9dd220496ac91
parent685082d06f160d51b2b27c0bdbb40ff8be57122b (diff)
* typo bug
git-svn-id: svn+ssh://ci.ruby-lang.org/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 d282bbd5ea..0941635716 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