summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Incoming.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/Incoming.cpp')
-rw-r--r--cpp/src/Ice/Incoming.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/Incoming.cpp b/cpp/src/Ice/Incoming.cpp
index f8d04ba5bf7..b57b30f3d62 100644
--- a/cpp/src/Ice/Incoming.cpp
+++ b/cpp/src/Ice/Incoming.cpp
@@ -80,7 +80,7 @@ IceInternal::Incoming::invoke(BasicStream& is)
{
if (!facet.empty())
{
- ObjectPtr facetServant = servant->_findFacet(facet);
+ ObjectPtr facetServant = servant->_ice_findFacet(facet);
if (!facetServant)
{
_os.write(static_cast<Byte>(DispatchFacetNotExist));
@@ -124,7 +124,7 @@ IceInternal::Incoming::invoke(BasicStream& is)
}
_os.b.resize(statusPos);
_os.write(static_cast<Byte>(DispatchUnknownLocalException));
- ex._throw();
+ ex._ice_throw();
}
catch (const UserException& ex)
{
@@ -134,7 +134,7 @@ IceInternal::Incoming::invoke(BasicStream& is)
}
_os.b.resize(statusPos);
_os.write(static_cast<Byte>(DispatchUnknownUserException));
- ex._throw();
+ ex._ice_throw();
}
catch (...)
{