diff options
author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-04-06 02:21:20 +0000 |
---|---|---|
committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-04-06 02:21:20 +0000 |
commit | 02dd7f2b29f7a14e116884ada10e08f28b649ced (patch) | |
tree | ab7d16d2dbc4248a7576ec46d25e0680a93a8d0b | |
parent | 2fb976f59c7acd6746b9382fbe9e633beb330189 (diff) | |
download | ruby-02dd7f2b29f7a14e116884ada10e08f28b649ced.tar.gz ruby-02dd7f2b29f7a14e116884ada10e08f28b649ced.tar.xz ruby-02dd7f2b29f7a14e116884ada10e08f28b649ced.zip |
* ext/tk/lib/tk/panedwindow.rb: lack of arguments. [ruby-core:7681]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10080 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ext/tk/lib/tk/panedwindow.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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. diff --git a/ext/tk/lib/tk/panedwindow.rb b/ext/tk/lib/tk/panedwindow.rb index 3f4266e4f..c6cf3cd11 100644 --- a/ext/tk/lib/tk/panedwindow.rb +++ b/ext/tk/lib/tk/panedwindow.rb @@ -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 |