summaryrefslogtreecommitdiffstats
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
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
-rw-r--r--ChangeLog4
-rw-r--r--ext/tk/lib/tk/spinbox.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a6e772bf..f04764cad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Sep 1 21:16:50 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
+
+ * ext/tk/lib/tk/spinbox.rb: fix typo
+
Wed Sep 1 19:28:37 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* process.c (rb_proc_exec): label cannot precede variable declarations.
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