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
commiteadc0171789e6688705c8a208c54062f4b08fde9 (patch)
tree34f89807a311a6e4f57dc3b129723f3be99f418a
parent7d5ce5b9d3f2f92e4d36459520189d5c0615a0c4 (diff)
downloadruby-eadc0171789e6688705c8a208c54062f4b08fde9.tar.gz
ruby-eadc0171789e6688705c8a208c54062f4b08fde9.tar.xz
ruby-eadc0171789e6688705c8a208c54062f4b08fde9.zip
* ext/tk/lib/tk/spinbox.rb: fix typo
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@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 00add5dbe..17ebd1772 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Sep 1 21:18:25 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
+
+ * ext/tk/lib/tk/spinbox.rb: fix typo
+
Tue Aug 31 18:24:04 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
* ext/tk/tkutil.c (cbsubst_init): fix memory leak
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