diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-04-26 15:57:47 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-04-26 15:57:47 +0000 |
commit | c75114dc63456ca789af2922f1f87356f8c89544 (patch) | |
tree | 417ea67e43316186cd80a334a665e6e997c3c0f6 /cppe/src/IceE/Connection.cpp | |
parent | Removed LocalObject (diff) | |
download | ice-c75114dc63456ca789af2922f1f87356f8c89544.tar.bz2 ice-c75114dc63456ca789af2922f1f87356f8c89544.tar.xz ice-c75114dc63456ca789af2922f1f87356f8c89544.zip |
Removed default context support
Diffstat (limited to 'cppe/src/IceE/Connection.cpp')
-rwxr-xr-x | cppe/src/IceE/Connection.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cppe/src/IceE/Connection.cpp b/cppe/src/IceE/Connection.cpp index 4b11dbd668a..cfda950509c 100755 --- a/cppe/src/IceE/Connection.cpp +++ b/cppe/src/IceE/Connection.cpp @@ -955,8 +955,7 @@ Ice::Connection::createProxy(const Identity& ident) const // vector<ConnectionPtr> connections; connections.push_back(const_cast<Connection*>(this)); - ReferencePtr ref = _instance->referenceFactory()->create(ident, _instance->getDefaultContext(), "", - Reference::ModeTwoway, connections); + ReferencePtr ref = _instance->referenceFactory()->create(ident, "", Reference::ModeTwoway, connections); return _instance->proxyFactory()->referenceToProxy(ref); } |