diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-07-06 07:21:26 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-07-06 07:21:26 +0000 |
| commit | 64e7ed11fda266dbbd72e6b80acd310149b1ec71 (patch) | |
| tree | f5320945b9bfd9fc19b133335a7be45076fe03e9 /ext/tk/lib | |
| parent | 71898e529579cd40593098e619ed16346a861a50 (diff) | |
| download | ruby-64e7ed11fda266dbbd72e6b80acd310149b1ec71.tar.gz ruby-64e7ed11fda266dbbd72e6b80acd310149b1ec71.tar.xz ruby-64e7ed11fda266dbbd72e6b80acd310149b1ec71.zip | |
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@816 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk/lib')
| -rw-r--r-- | ext/tk/lib/tk.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index a696d3b9b..b495a2e2d 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -527,15 +527,15 @@ module TkCore tk_call 'tk_messageBox', *hash_kv(keys) end - def getOpenFile(keys) + def getOpenFile(keys = nil) tk_call 'tk_getOpenFile', *hash_kv(keys) end - def getSaveFile(keys) + def getSaveFile(keys = nil) tk_call 'tk_getSaveFile', *hash_kv(keys) end - def chooseColor(keys) + def chooseColor(keys = nil) tk_call 'tk_chooseColor', *hash_kv(keys) end |
