1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/tk/lib/tk/console.rb: create console when required

* ext/tk/sample/tkextlib/tile/demo.rb: fix TypeError & create Console


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8569 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2005-06-05 14:03:41 +00:00
parent 8507219097
commit 80eef0fd3b
3 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,9 @@
Sun Jun 5 23:00:35 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/tk/console.rb: create console when required
* ext/tk/sample/tkextlib/tile/demo.rb: fix TypeError & create Console
Sun Jun 5 10:23:52 2005 Tanaka Akira <akr@m17n.org>
* signal.c (ruby_signal): don't set SA_RESTART.

View file

@ -1,3 +1,7 @@
2005-06-05 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* sample/tkextlib/tile/demo.rb: fix TypeError & create Console
2005-05-30 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* lib/tkextlib/blt.rb: add PACKAGE_NAME information of Tcl/Tk

View file

@ -130,6 +130,7 @@ end
# updates the scrollbar's position.
#
def sbstub(sb, cmd, num, units = 'units')
num = TkComm.number(num)
case cmd.to_s
when 'moveto'
sb.set(num, num+0.5)