зеркало из https://github.com/github/ruby.git
* ext/tk/lib/tk/image.rb: TkPhotoImage#cget bug fix
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
0ebc7c2bc9
Коммит
0634c07610
|
@ -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 03:06:13 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Fri Dec 24 03:06:13 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* io.c (io_reopen, rb_io_reopen): prohibit to change access mode for
|
* io.c (io_reopen, rb_io_reopen): prohibit to change access mode for
|
||||||
|
|
|
@ -89,9 +89,9 @@ class TkPhotoImage<TkImage
|
||||||
def cget(option)
|
def cget(option)
|
||||||
case option.to_s
|
case option.to_s
|
||||||
when 'data', 'file'
|
when 'data', 'file'
|
||||||
tk_send 'cget', option
|
tk_send 'cget', '-' << option.to_s
|
||||||
else
|
else
|
||||||
tk_tcl2ruby(tk_send('cget', option))
|
tk_tcl2ruby(tk_send('cget', '-' << option.to_s))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче