diff options
author | Matthew Newhook <matthew@zeroc.com> | 2002-01-16 18:54:53 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2002-01-16 18:54:53 +0000 |
commit | b52bc3d19c47b99a0b011f7a7410af05415668f7 (patch) | |
tree | a4b4907d65631b80caa33a66f3dc5d0c5eb75f28 /cpp/src/slice2xsd/Gen.cpp | |
parent | Commented out the Security Trace. (diff) | |
download | ice-b52bc3d19c47b99a0b011f7a7410af05415668f7.tar.bz2 ice-b52bc3d19c47b99a0b011f7a7410af05415668f7.tar.xz ice-b52bc3d19c47b99a0b011f7a7410af05415668f7.zip |
updates for slice2xsd.
Diffstat (limited to 'cpp/src/slice2xsd/Gen.cpp')
-rw-r--r-- | cpp/src/slice2xsd/Gen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2xsd/Gen.cpp b/cpp/src/slice2xsd/Gen.cpp index 79161fa1d8b..82f5a09b3a4 100644 --- a/cpp/src/slice2xsd/Gen.cpp +++ b/cpp/src/slice2xsd/Gen.cpp @@ -563,7 +563,6 @@ Slice::Gen::toString(const SyntaxTreeBasePtr& p) "xs:float", "xs:double", "xs:string", - "xs:string", "ice:_internal.objectType", /* Object */ "ice:_internal.proxyType", /* Object* */ "???" /* LocalObject */ @@ -586,7 +585,8 @@ Slice::Gen::toString(const SyntaxTreeBasePtr& p) if (cl) { string scopeId = containedToId(cl); - s = "tns:" + internalId + scopeId + cl->name() + "Type"; + //s = "tns:" + internalId + scopeId + cl->name() + "Type"; + s = "ice:_internal.reference"; } ExceptionPtr ex = ExceptionPtr::dynamicCast(p); |