diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/tk/lib/tk/spinbox.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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 |
