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 | 95d0611dd186880cf7471b4b7cddbc61d196c832 (patch) | |
| tree | a4d9cbfb50a184d0d53d2bc9b10b37081c111381 | |
| parent | 83f7fe29743d8ee2ad8559e8b1ab9293f1c20c60 (diff) | |
| download | ruby-95d0611dd186880cf7471b4b7cddbc61d196c832.tar.gz ruby-95d0611dd186880cf7471b4b7cddbc61d196c832.tar.xz ruby-95d0611dd186880cf7471b4b7cddbc61d196c832.zip | |
* ext/tk/lib/tk/image.rb: TkPhotoImage#cget bug fix
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/tk/lib/tk/image.rb | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Fri Dec 24 23:27:18 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> + + * ext/tk/lib/tk/image.rb: TkPhotoImage#cget bug fix + Fri Dec 24 18:39:25 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> * win32/win32.[ch]: failed to compile on bcc32 (and probably wince) 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 |
