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/panedwindow.rb: lack of arguments. [ruby-core:7681]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10080 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2006-04-06 02:21:20 +00:00
parent 659e09e741
commit 495d872fac
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Apr 6 11:18:37 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/tk/panedwindow.rb: lack of arguments. [ruby-core:7681]
Thu Apr 6 01:04:47 2006 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/tcltklib.c: fix SEGV when embedding to an application.

View file

@ -63,7 +63,7 @@ class TkPanedWindow<TkWindow
def sash_coord(index)
list(tk_send('sash', 'coord', index))
end
def sash_dragto(index)
def sash_dragto(index, x, y)
tk_send('sash', 'dragto', index, x, y)
self
end