summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tk
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-04-06 02:21:20 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-04-06 02:21:20 +0000
commit495d872fac55470a3573b5e2c8d34f5dbfcfc289 (patch)
treeab7d16d2dbc4248a7576ec46d25e0680a93a8d0b /ext/tk/lib/tk
parent659e09e7410e270ea8de32ad72060b5c09e6662a (diff)
* 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
Diffstat (limited to 'ext/tk/lib/tk')
-rw-r--r--ext/tk/lib/tk/panedwindow.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tk/lib/tk/panedwindow.rb b/ext/tk/lib/tk/panedwindow.rb
index 3f4266e4f9..c6cf3cd11f 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