From d237c9e0fc6455a0e8aabc8a219ccb9e282ecca8 Mon Sep 17 00:00:00 2001 From: nagai Date: Fri, 5 Nov 2004 07:07:39 +0000 Subject: * ext/tk/lib/tk.rb: TkComm._at() supprts both of "@x,y" and "@x" git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7211 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/lib/tk.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'ext/tk/lib') diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index 404f8bf9f..807ccd228 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -179,8 +179,12 @@ module TkComm private :_genobj_for_tkwidget module_function :_genobj_for_tkwidget - def _at(x,y) - "@#{Integer(x)},#{Integer(y)}" + def _at(x,y=nil) + if y + "@#{Integer(x)},#{Integer(y)}" + else + "@#{Integer(x)}" + end end module_function :_at -- cgit