From 16487ee284f17cfbf6fad9f6b2fedc57f0f37e0a Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 16 Jun 1998 04:24:38 +0000 Subject: baseline git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@243 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/tk.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/tk.rb') diff --git a/lib/tk.rb b/lib/tk.rb index 62b275b432..b44f585b0f 100644 --- a/lib/tk.rb +++ b/lib/tk.rb @@ -812,11 +812,11 @@ module TkGrid end def columnconfigure(master, index, *args) - tk_call "grid", 'columnconfigure', master, index, *hash_kv(keys) + tk_call "grid", 'columnconfigure', master, index, *hash_kv(args) end def rowconfigure(master, index, *args) - tk_call "grid", 'rowconfigure', master, index, *hash_kv(keys) + tk_call "grid", 'rowconfigure', master, index, *hash_kv(args) end def add(widget, *args) @@ -1301,10 +1301,10 @@ class TkMenu