diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-10-27 15:55:14 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-10-27 15:55:14 +0000 |
commit | 6784d4bde53175419fb12afb1f01f03575a3fdbd (patch) | |
tree | 958e08ab1170b6f8010f77606ae63de4fef2cd53 /cppe/src/IceE/RoutingTable.cpp | |
parent | Renamed IceBox library and executable (diff) | |
download | ice-6784d4bde53175419fb12afb1f01f03575a3fdbd.tar.bz2 ice-6784d4bde53175419fb12afb1f01f03575a3fdbd.tar.xz ice-6784d4bde53175419fb12afb1f01f03575a3fdbd.zip |
Removed ice_default()
Diffstat (limited to 'cppe/src/IceE/RoutingTable.cpp')
-rw-r--r-- | cppe/src/IceE/RoutingTable.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cppe/src/IceE/RoutingTable.cpp b/cppe/src/IceE/RoutingTable.cpp index fb6900f571b..d278bf6710b 100644 --- a/cppe/src/IceE/RoutingTable.cpp +++ b/cppe/src/IceE/RoutingTable.cpp @@ -43,7 +43,10 @@ IceInternal::RoutingTable::add(const ObjectPrx& prx) return false; } - ObjectPrx proxy = prx->ice_default(); // We insert the proxy in its default form into the routing table. + // + // We insert the proxy in its default form into the routing table. + // + ObjectPrx proxy = prx->ice_twoway(); IceUtil::Mutex::Lock sync(*this); |