summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cpp/GenUtil.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-07-16 12:20:39 +0000
committerMarc Laukien <marc@zeroc.com>2001-07-16 12:20:39 +0000
commitffe772b6e9dcac3ea88e7564f240a2c92e2d9246 (patch)
treeac22f2a4b7d86c4edba228540c110f3813c765c5 /cpp/src/slice2cpp/GenUtil.cpp
parentmore exception stuff (diff)
downloadice-ffe772b6e9dcac3ea88e7564f240a2c92e2d9246.tar.bz2
ice-ffe772b6e9dcac3ea88e7564f240a2c92e2d9246.tar.xz
ice-ffe772b6e9dcac3ea88e7564f240a2c92e2d9246.zip
more exception test stuff
Diffstat (limited to 'cpp/src/slice2cpp/GenUtil.cpp')
-rw-r--r--cpp/src/slice2cpp/GenUtil.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2cpp/GenUtil.cpp b/cpp/src/slice2cpp/GenUtil.cpp
index 42da4f6bbc8..b2fad506791 100644
--- a/cpp/src/slice2cpp/GenUtil.cpp
+++ b/cpp/src/slice2cpp/GenUtil.cpp
@@ -163,7 +163,7 @@ Slice::exceptionTypeToString(const Type_ptr& type)
"const ::std::string&",
"const ::std::wstring&",
"const ::Ice::Object_ptrE&",
- "const ::Ice::Object_prx&",
+ "const ::Ice::Object_prxE&",
"const ::Ice::LocalObject_ptrE&"
};
@@ -177,7 +177,7 @@ Slice::exceptionTypeToString(const Type_ptr& type)
Proxy_ptr proxy = Proxy_ptr::dynamicCast(type);
if(proxy)
- return "const " + proxy -> _class() -> scoped() + "_prx&";
+ return "const " + proxy -> _class() -> scoped() + "_prxE&";
Enum_ptr en = Enum_ptr::dynamicCast(type);
if(en)