diff options
author | Michi Henning <michi@zeroc.com> | 2004-10-29 04:21:38 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-10-29 04:21:38 +0000 |
commit | 1a469c19cd810f7d60e45f2a1726372455dde834 (patch) | |
tree | 7289e8a4d55672971d06682ea05747227b79af06 /cpp/src/Ice/ConnectionI.cpp | |
parent | Added try-catch block to Generate.cs. Updated version number to 2.0.0. (diff) | |
download | ice-1a469c19cd810f7d60e45f2a1726372455dde834.tar.bz2 ice-1a469c19cd810f7d60e45f2a1726372455dde834.tar.xz ice-1a469c19cd810f7d60e45f2a1726372455dde834.zip |
Reference refactoring.
Diffstat (limited to 'cpp/src/Ice/ConnectionI.cpp')
-rw-r--r-- | cpp/src/Ice/ConnectionI.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/src/Ice/ConnectionI.cpp b/cpp/src/Ice/ConnectionI.cpp index 5ce17509421..002041cb492 100644 --- a/cpp/src/Ice/ConnectionI.cpp +++ b/cpp/src/Ice/ConnectionI.cpp @@ -1092,11 +1092,10 @@ Ice::ConnectionI::createProxy(const Identity& ident) const // Create a reference and return a reverse proxy for this // reference. // - vector<EndpointPtr> endpoints; vector<ConnectionIPtr> connections; connections.push_back(const_cast<ConnectionI*>(this)); ReferencePtr ref = _instance->referenceFactory()->create(ident, Context(), "", Reference::ModeTwoway, - false, "", endpoints, 0, 0, connections, true); + false, true, connections); return _instance->proxyFactory()->referenceToProxy(ref); } |