diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-18 00:43:28 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-18 00:43:28 +0000 |
commit | 14093340f6e223cc678b8b7a869240c6f13eda25 (patch) | |
tree | c6232ff538b144459b255af5cdaf799c7473f696 /cpp/src/Ice/Proxy.cpp | |
parent | fixes (diff) | |
download | ice-14093340f6e223cc678b8b7a869240c6f13eda25.tar.bz2 ice-14093340f6e223cc678b8b7a869240c6f13eda25.tar.xz ice-14093340f6e223cc678b8b7a869240c6f13eda25.zip |
exception fixes
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index 9957c3b4353..a4353eca0a7 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -164,7 +164,7 @@ IceProxy::Ice::Object::_getIdentity() const return _reference->identity; } -::Ice::ObjectPrx +ObjectPrx IceProxy::Ice::Object::_newIdentity(const std::string& newIdentity) const { if (newIdentity == _reference->identity) @@ -185,7 +185,7 @@ IceProxy::Ice::Object::_getFacet() const return _reference->facet; } -::Ice::ObjectPrx +ObjectPrx IceProxy::Ice::Object::_newFacet(const std::string& newFacet) const { if (newFacet == _reference->facet) @@ -319,13 +319,13 @@ IceProxy::Ice::Object::__reference() const } void -IceProxy::Ice::Object::__copyFrom(const ::IceProxy::Ice::Object* from) +IceProxy::Ice::Object::__copyFrom(const ObjectPrx& from) { setup(from->__reference()); } void -IceProxy::Ice::Object::__copyFromWithFacet(const ::IceProxy::Ice::Object* from, const string& facet) +IceProxy::Ice::Object::__copyFromWithFacet(const ObjectPrx& from, const string& facet) { setup(from->__reference()->changeFacet(facet)); } |