summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ObjectAdapterI.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-07-17 20:59:55 +0000
committerMarc Laukien <marc@zeroc.com>2002-07-17 20:59:55 +0000
commitbf7cafb2217ef078c090361095c55bede810f309 (patch)
tree5aa37468086623f742c02f9c25725de5298c08b3 /cpp/src/Ice/ObjectAdapterI.cpp
parentfacet path (diff)
downloadice-bf7cafb2217ef078c090361095c55bede810f309.tar.bz2
ice-bf7cafb2217ef078c090361095c55bede810f309.tar.xz
ice-bf7cafb2217ef078c090361095c55bede810f309.zip
facet path
Diffstat (limited to 'cpp/src/Ice/ObjectAdapterI.cpp')
-rw-r--r--cpp/src/Ice/ObjectAdapterI.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/src/Ice/ObjectAdapterI.cpp b/cpp/src/Ice/ObjectAdapterI.cpp
index eb2844c8552..a623aa1318b 100644
--- a/cpp/src/Ice/ObjectAdapterI.cpp
+++ b/cpp/src/Ice/ObjectAdapterI.cpp
@@ -361,8 +361,8 @@ Ice::ObjectAdapterI::createReverseProxy(const Identity& ident)
// Create a reference and return a reverse proxy for this reference.
//
vector<EndpointPtr> endpoints;
- ReferencePtr ref = _instance->referenceFactory()->create(ident, "", Reference::ModeTwoway, false, false,"",
- endpoints, 0, 0, this);
+ ReferencePtr ref = _instance->referenceFactory()->create(ident, vector<string>(), Reference::ModeTwoway,
+ false, false, "", endpoints, 0, 0, this);
return _instance->proxyFactory()->referenceToProxy(ref);
}
@@ -561,8 +561,8 @@ Ice::ObjectAdapterI::newProxy(const Identity& ident) const
// Create a reference with the adapter id.
//
vector<EndpointPtr> endpoints;
- ReferencePtr ref = _instance->referenceFactory()->create(ident, "", Reference::ModeTwoway, false, false, _name,
- endpoints, 0, 0, 0);
+ ReferencePtr ref = _instance->referenceFactory()->create(ident, vector<string>(), Reference::ModeTwoway,
+ false, false, _name, endpoints, 0, 0, 0);
//
// Return a proxy for the reference.
@@ -596,8 +596,8 @@ Ice::ObjectAdapterI::newDirectProxy(const Identity& ident) const
//
// Create a reference and return a proxy for this reference.
//
- ReferencePtr ref = _instance->referenceFactory()->create(ident, "", Reference::ModeTwoway, false, false, "",
- endpoints, 0, 0, 0);
+ ReferencePtr ref = _instance->referenceFactory()->create(ident, vector<string>(), Reference::ModeTwoway,
+ false, false, "", endpoints, 0, 0, 0);
return _instance->proxyFactory()->referenceToProxy(ref);
}