summaryrefslogtreecommitdiff
path: root/cpp/src/slice2xsd/Gen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/slice2xsd/Gen.cpp')
-rw-r--r--cpp/src/slice2xsd/Gen.cpp4
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);