summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ReferenceFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r--cpp/src/Ice/ReferenceFactory.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp
index 8af9ceab456..86ed65d8bf5 100644
--- a/cpp/src/Ice/ReferenceFactory.cpp
+++ b/cpp/src/Ice/ReferenceFactory.cpp
@@ -53,7 +53,7 @@ IceInternal::ReferenceFactory::create(const Identity& ident,
const string& facet,
Reference::Mode mode,
bool secure,
- const vector<EndpointPtr>& endpoints,
+ const vector<EndpointIPtr>& endpoints,
const RouterInfoPtr& routerInfo,
bool collocationOptimization)
{
@@ -411,7 +411,7 @@ IceInternal::ReferenceFactory::create(const string& str)
return create(ident, Context(), facet, mode, secure, "", routerInfo, locatorInfo, true);
}
- vector<EndpointPtr> endpoints;
+ vector<EndpointIPtr> endpoints;
switch(s[beg])
{
@@ -431,7 +431,7 @@ IceInternal::ReferenceFactory::create(const string& str)
}
string es = s.substr(beg, end - beg);
- EndpointPtr endp = _instance->endpointFactoryManager()->create(es);
+ EndpointIPtr endp = _instance->endpointFactoryManager()->create(es);
if(endp != 0)
{
endpoints.push_back(endp);
@@ -550,7 +550,7 @@ IceInternal::ReferenceFactory::create(const Identity& ident, BasicStream* s)
bool secure;
s->read(secure);
- vector<EndpointPtr> endpoints;
+ vector<EndpointIPtr> endpoints;
string adapterId;
RouterInfoPtr routerInfo = _instance->routerManager()->get(getDefaultRouter());
@@ -564,7 +564,7 @@ IceInternal::ReferenceFactory::create(const Identity& ident, BasicStream* s)
endpoints.reserve(sz);
while(sz--)
{
- EndpointPtr endpoint = _instance->endpointFactoryManager()->read(s);
+ EndpointIPtr endpoint = _instance->endpointFactoryManager()->read(s);
endpoints.push_back(endpoint);
}
return create(ident, Context(), facet, mode, secure, endpoints, routerInfo, true);