1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/tk/lib/tk/image.rb: TkPhotoImage#cget bug fix

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2004-12-24 14:30:14 +00:00
parent b35a261a79
commit 3d35bc31f4
2 changed files with 6 additions and 2 deletions

View file

@ -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)

View file

@ -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