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 | 5fa520c911de3c26095678cfcdef4e2a091dde5c (patch) | |
| tree | 50ac61352847b5b5acf67e39f1d2069faf2413d4 /ext/tk/lib | |
| parent | 00918eedc7b4a6fc4818808659e77d372967e7f7 (diff) | |
| download | ruby-5fa520c911de3c26095678cfcdef4e2a091dde5c.tar.gz ruby-5fa520c911de3c26095678cfcdef4e2a091dde5c.tar.xz ruby-5fa520c911de3c26095678cfcdef4e2a091dde5c.zip | |
* ext/tk/lib/tk/panedwindow.rb: lack of arguments. [ruby-core:7681]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10080 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib')
| -rw-r--r-- | ext/tk/lib/tk/panedwindow.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
