summaryrefslogtreecommitdiffstats
path: root/ext/tk
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-09-01 12:27:43 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-09-01 12:27:43 +0000
commite08b53dac907e69cad45999fb27fc55a524cf0b7 (patch)
tree31aab554b2ecf6dc080eeaad66b3597c08a57145 /ext/tk
parent886df13d4b5476024ed7b543310d5f9028c578e7 (diff)
downloadruby-e08b53dac907e69cad45999fb27fc55a524cf0b7.tar.gz
ruby-e08b53dac907e69cad45999fb27fc55a524cf0b7.tar.xz
ruby-e08b53dac907e69cad45999fb27fc55a524cf0b7.zip
* ext/tk/lib/tk/spinbox.rb: fix typo
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6845 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk')
-rw-r--r--ext/tk/lib/tk/spinbox.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tk/lib/tk/spinbox.rb b/ext/tk/lib/tk/spinbox.rb
index 664df6175..06abb5fb3 100644
--- a/ext/tk/lib/tk/spinbox.rb
+++ b/ext/tk/lib/tk/spinbox.rb
@@ -34,6 +34,6 @@ class TkSpinbox<TkEntry
end
def set(str)
- _freomUTF8(tk_send_without_enc('set', _get_eval_enc_str(str)))
+ _fromUTF8(tk_send_without_enc('set', _get_eval_enc_str(str)))
end
end