summaryrefslogtreecommitdiff
path: root/lib/tk.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-06-16 04:24:38 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-06-16 04:24:38 +0000
commit16487ee284f17cfbf6fad9f6b2fedc57f0f37e0a (patch)
tree0c0aab325ab782ff559d1cfa5df269e786219ee3 /lib/tk.rb
parent83687c4eb47e2bcbe463d097317d068d1dd0b734 (diff)
baseline
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@243 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/tk.rb')
-rw-r--r--lib/tk.rb10
1 files changed, 5 insertions, 5 deletions
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<TkWindow
def index(index)
tk_send 'index', index
end
- def invoke
- tk_send 'invoke'
+ def invoke(index)
+ tk_send 'invoke', index
end
- def insert(index, type, *keys)
+ def insert(index, type, keys=nil)
tk_send 'add', index, type, *hash_kv(keys)
end
def post(x, y)