* test/soap/marshal/test_struct.rb: use qualified build-tin class name
(::Struct) to avoid name crash. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6609 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e55330c9c4
commit
519531dd9a
@ -1,3 +1,8 @@
|
|||||||
|
Sat Jul 10 09:30:24 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
|
||||||
|
|
||||||
|
* test/soap/marshal/test_struct.rb: use qualified build-tin class name
|
||||||
|
(::Struct) to avoid name crash.
|
||||||
|
|
||||||
Sat Jul 10 04:21:56 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
Sat Jul 10 04:21:56 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||||
|
|
||||||
* ext/tk/lib/tk.rb: better operation for SIGINT when processing
|
* ext/tk/lib/tk.rb: better operation for SIGINT when processing
|
||||||
@ -10,7 +15,7 @@ Sat Jul 10 04:21:56 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
|||||||
function of Tk::ValidateConfigure to define validatecommand
|
function of Tk::ValidateConfigure to define validatecommand
|
||||||
methods easier
|
methods easier
|
||||||
|
|
||||||
Fri Jul 9 22:18:59 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
Fri Jul 9 22:18:59 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||||
|
|
||||||
* array.c, enum.c, pack.c: rdoc patch from Johan Holmberg
|
* array.c, enum.c, pack.c: rdoc patch from Johan Holmberg
|
||||||
<holmberg@iar.se> [ruby-core:3132] [ruby-core:3136]
|
<holmberg@iar.se> [ruby-core:3132] [ruby-core:3136]
|
||||||
|
@ -6,8 +6,8 @@ module SOAP
|
|||||||
module Marshal
|
module Marshal
|
||||||
|
|
||||||
|
|
||||||
Foo1 = Struct.new("Foo1", :m)
|
Foo1 = ::Struct.new("Foo1", :m)
|
||||||
Foo2 = Struct.new(:m)
|
Foo2 = ::Struct.new(:m)
|
||||||
class Foo3
|
class Foo3
|
||||||
attr_accessor :m
|
attr_accessor :m
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user