diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-08-31 22:12:14 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-08-31 22:12:14 +0000 |
commit | 731e306d69538490d10fe591964821a0f7081356 (patch) | |
tree | a881b793ac2855824eacc85401481d7539fcbf8c /cpp/src/Ice/ObjectAdapterI.cpp | |
parent | scope fixes (diff) | |
download | ice-731e306d69538490d10fe591964821a0f7081356.tar.bz2 ice-731e306d69538490d10fe591964821a0f7081356.tar.xz ice-731e306d69538490d10fe591964821a0f7081356.zip |
Renamed IceInternal::Connection to Ice::ConnectionI
Diffstat (limited to 'cpp/src/Ice/ObjectAdapterI.cpp')
-rw-r--r-- | cpp/src/Ice/ObjectAdapterI.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/ObjectAdapterI.cpp b/cpp/src/Ice/ObjectAdapterI.cpp index 286ca8c641d..a17b0abd51e 100644 --- a/cpp/src/Ice/ObjectAdapterI.cpp +++ b/cpp/src/Ice/ObjectAdapterI.cpp @@ -453,11 +453,11 @@ Ice::ObjectAdapterI::createReverseProxy(const Identity& ident) const // // Get all incoming connections for this object adapter. // - vector<ConnectionPtr> connections; + vector<ConnectionIPtr> connections; vector<IncomingConnectionFactoryPtr>::const_iterator p; for(p = _incomingConnectionFactories.begin(); p != _incomingConnectionFactories.end(); ++p) { - list<ConnectionPtr> cons = (*p)->connections(); + list<ConnectionIPtr> cons = (*p)->connections(); copy(cons.begin(), cons.end(), back_inserter(connections)); } @@ -789,7 +789,7 @@ Ice::ObjectAdapterI::newProxy(const Identity& ident) const ReferencePtr ref = _instance->referenceFactory()->create(ident, Context(), "", Reference::ModeTwoway, false, _id, endpoints, 0, _locatorInfo, - vector<ConnectionPtr>(), true); + vector<ConnectionIPtr>(), true); // // Return a proxy for the reference. @@ -822,7 +822,7 @@ Ice::ObjectAdapterI::newDirectProxy(const Identity& ident) const // ReferencePtr ref = _instance->referenceFactory()->create(ident, Context(), "", Reference::ModeTwoway, false, "", endpoints, 0, _locatorInfo, - vector<ConnectionPtr>(), true); + vector<ConnectionIPtr>(), true); return _instance->proxyFactory()->referenceToProxy(ref); } |