diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-01-24 17:32:41 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-01-24 17:32:41 +0000 |
commit | 04a38e5e00cb2be1a4198a0ae73c8d44a0c910b9 (patch) | |
tree | c49e27187a696b5b794f56ba5102ff857469f717 /cppe/src/IceE/Connection.cpp | |
parent | - Removed reference to RH9 and LinuxThreads from INSTALL.LINUX (diff) | |
download | ice-04a38e5e00cb2be1a4198a0ae73c8d44a0c910b9.tar.bz2 ice-04a38e5e00cb2be1a4198a0ae73c8d44a0c910b9.tar.xz ice-04a38e5e00cb2be1a4198a0ae73c8d44a0c910b9.zip |
Ported some Ice changes wrt default context
Diffstat (limited to 'cppe/src/IceE/Connection.cpp')
-rwxr-xr-x | cppe/src/IceE/Connection.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cppe/src/IceE/Connection.cpp b/cppe/src/IceE/Connection.cpp index 00acb822442..6bc188784e5 100755 --- a/cppe/src/IceE/Connection.cpp +++ b/cppe/src/IceE/Connection.cpp @@ -858,7 +858,8 @@ Ice::Connection::createProxy(const Identity& ident) const // vector<ConnectionPtr> connections; connections.push_back(const_cast<Connection*>(this)); - ReferencePtr ref = _instance->referenceFactory()->create(ident, Context(), "", Reference::ModeTwoway, connections); + ReferencePtr ref = _instance->referenceFactory()->create(ident, _instance->getDefaultContext(), "", + Reference::ModeTwoway, connections); return _instance->proxyFactory()->referenceToProxy(ref); } |