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

* 'format'==>'Kernel.format' (avoid override trouble)

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5091 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2003-12-03 04:55:07 +00:00
parent e3bab670fc
commit a7c382223c
6 changed files with 76 additions and 63 deletions

View file

@ -18,8 +18,8 @@ class TkDialog2 < TkWindow
"to the dialog button#{i}. It was removed.\n")
end
c.delete('command'); c.delete(:command)
@config << format("%s.button%s configure %s; ",
@path, i, hash_kv(c).join(' '))
@config << Kernel.format("%s.button%s configure %s; ",
@path, i, hash_kv(c).join(' '))
}
case configs
when Proc
@ -114,23 +114,23 @@ class TkDialog2 < TkWindow
}
if @message_config.kind_of? Hash
@config << format("%s.msg configure %s;",
@path, hash_kv(@message_config).join(' '))
@config << Kernel.format("%s.msg configure %s;",
@path, hash_kv(@message_config).join(' '))
end
if @msgframe_config.kind_of? Hash
@config << format("%s.top configure %s;",
@path, hash_kv(@msgframe_config).join(' '))
@config << Kernel.format("%s.top configure %s;",
@path, hash_kv(@msgframe_config).join(' '))
end
if @btnframe_config.kind_of? Hash
@config << format("%s.bot configure %s;",
@path, hash_kv(@btnframe_config).join(' '))
@config << Kernel.format("%s.bot configure %s;",
@path, hash_kv(@btnframe_config).join(' '))
end
if @bitmap_config.kind_of? Hash
@config << format("%s.bitmap configure %s;",
@path, hash_kv(@bitmap_config).join(' '))
@config << Kernel.format("%s.bitmap configure %s;",
@path, hash_kv(@bitmap_config).join(' '))
end
_set_button_config(@button_configs) if @button_configs