diff options
author | Marc Laukien <marc@zeroc.com> | 2002-12-07 18:14:21 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-12-07 18:14:21 +0000 |
commit | f08843c1237ed2fc7a7bbc585a15afe45f2739c1 (patch) | |
tree | d148378896a2cbf7c3c13664703af2c166f15390 /cpp/src/Ice/ObjectAdapterI.cpp | |
parent | AMD classes now expandable (diff) | |
download | ice-f08843c1237ed2fc7a7bbc585a15afe45f2739c1.tar.bz2 ice-f08843c1237ed2fc7a7bbc585a15afe45f2739c1.tar.xz ice-f08843c1237ed2fc7a7bbc585a15afe45f2739c1.zip |
ice_collocationOptimization()
Diffstat (limited to 'cpp/src/Ice/ObjectAdapterI.cpp')
-rw-r--r-- | cpp/src/Ice/ObjectAdapterI.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/ObjectAdapterI.cpp b/cpp/src/Ice/ObjectAdapterI.cpp index 2165d01d46b..4a78165d898 100644 --- a/cpp/src/Ice/ObjectAdapterI.cpp +++ b/cpp/src/Ice/ObjectAdapterI.cpp @@ -476,7 +476,7 @@ Ice::ObjectAdapterI::createReverseProxy(const Identity& ident) // vector<EndpointPtr> endpoints; ReferencePtr ref = _instance->referenceFactory()->create(ident, vector<string>(), Reference::ModeTwoway, - false, false, "", endpoints, 0, 0, this); + false, false, "", endpoints, 0, 0, this, true); return _instance->proxyFactory()->referenceToProxy(ref); } @@ -720,7 +720,7 @@ Ice::ObjectAdapterI::newProxy(const Identity& ident) const // vector<EndpointPtr> endpoints; ReferencePtr ref = _instance->referenceFactory()->create(ident, vector<string>(), Reference::ModeTwoway, - false, false, _id, endpoints, 0, 0, 0); + false, false, _id, endpoints, 0, 0, 0, true); // // Return a proxy for the reference. @@ -755,7 +755,7 @@ Ice::ObjectAdapterI::newDirectProxy(const Identity& ident) const // Create a reference and return a proxy for this reference. // ReferencePtr ref = _instance->referenceFactory()->create(ident, vector<string>(), Reference::ModeTwoway, - false, false, "", endpoints, 0, 0, 0); + false, false, "", endpoints, 0, 0, 0, true); return _instance->proxyFactory()->referenceToProxy(ref); } |