diff options
| author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-24 14:30:14 +0000 |
|---|---|---|
| committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-24 14:30:14 +0000 |
| commit | ad5dc798c8dc1fcfe20b529c536e4bc2a0749b7c (patch) | |
| tree | b1b1e5e0139890256cda903cdf052de4db7974a9 /ext/tk | |
| parent | a901b2cc1cacb4c303fa973a89f581fb4b7baaf2 (diff) | |
| download | ruby-ad5dc798c8dc1fcfe20b529c536e4bc2a0749b7c.tar.gz ruby-ad5dc798c8dc1fcfe20b529c536e4bc2a0749b7c.tar.xz ruby-ad5dc798c8dc1fcfe20b529c536e4bc2a0749b7c.zip | |
* ext/tk/lib/tk/image.rb: TkPhotoImage#cget bug fix
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/tk')
| -rw-r--r-- | ext/tk/lib/tk/image.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/tk/lib/tk/image.rb b/ext/tk/lib/tk/image.rb index 6eb7b98d6..0848eb596 100644 --- a/ext/tk/lib/tk/image.rb +++ b/ext/tk/lib/tk/image.rb @@ -89,9 +89,9 @@ class TkPhotoImage<TkImage def cget(option) case option.to_s when 'data', 'file' - tk_send 'cget', option + tk_send 'cget', '-' << option.to_s else - tk_tcl2ruby(tk_send('cget', option)) + tk_tcl2ruby(tk_send('cget', '-' << option.to_s)) end end |
