From 5369103f871e30741d49e51f1a52332cb50728d5 Mon Sep 17 00:00:00 2001 From: nagai Date: Mon, 3 Oct 2005 15:34:37 +0000 Subject: * ext/tk/lib/tkextlib/tktable/tktable.rb: border_* instance methods don't call 'border' subcommands. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9343 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/lib/tkextlib/tktable/tktable.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ext/tk/lib/tkextlib/tktable/tktable.rb') diff --git a/ext/tk/lib/tkextlib/tktable/tktable.rb b/ext/tk/lib/tkextlib/tktable/tktable.rb index 161f4e4543..59328a8f6e 100644 --- a/ext/tk/lib/tkextlib/tktable/tktable.rb +++ b/ext/tk/lib/tkextlib/tktable/tktable.rb @@ -360,16 +360,16 @@ class Tk::TkTable end def border_mark(x, y) - simplelist(tk_send('scan', 'mark', x, y)) + simplelist(tk_send('border', 'mark', x, y)) end def border_mark_row(x, y) - tk_send('scan', 'mark', x, y, 'row') + tk_send('border', 'mark', x, y, 'row') end def border_mark_col(x, y) - tk_send('scan', 'mark', x, y, 'col') + tk_send('border', 'mark', x, y, 'col') end def border_dragto(x, y) - tk_send('scan', 'dragto', x, y) + tk_send('border', 'dragto', x, y) end def clear_cache(first=None, last=None) -- cgit v1.2.3