summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Proxy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r--cpp/src/Ice/Proxy.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp
index ab2e910dbe3..7cc0d97e1ee 100644
--- a/cpp/src/Ice/Proxy.cpp
+++ b/cpp/src/Ice/Proxy.cpp
@@ -189,14 +189,14 @@ IceProxy::Ice::Object::ice_invoke(const string& operation,
}
}
-std::string
+Identity
IceProxy::Ice::Object::ice_getIdentity() const
{
return _reference->identity;
}
ObjectPrx
-IceProxy::Ice::Object::ice_newIdentity(const std::string& newIdentity) const
+IceProxy::Ice::Object::ice_newIdentity(const Identity& newIdentity) const
{
if (newIdentity == _reference->identity)
{
@@ -210,14 +210,14 @@ IceProxy::Ice::Object::ice_newIdentity(const std::string& newIdentity) const
}
}
-std::string
+string
IceProxy::Ice::Object::ice_getFacet() const
{
return _reference->facet;
}
ObjectPrx
-IceProxy::Ice::Object::ice_newFacet(const std::string& newFacet) const
+IceProxy::Ice::Object::ice_newFacet(const string& newFacet) const
{
if (newFacet == _reference->facet)
{