diff options
author | Marc Laukien <marc@zeroc.com> | 2001-07-16 12:20:39 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-07-16 12:20:39 +0000 |
commit | ffe772b6e9dcac3ea88e7564f240a2c92e2d9246 (patch) | |
tree | ac22f2a4b7d86c4edba228540c110f3813c765c5 /cpp/src/slice2cpp/GenUtil.cpp | |
parent | more exception stuff (diff) | |
download | ice-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.cpp | 4 |
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) |