diff options
author | Marc Laukien <marc@zeroc.com> | 2001-11-14 13:29:26 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-11-14 13:29:26 +0000 |
commit | 1547494750fd95418135b9c476d2af928a900e40 (patch) | |
tree | d0c251a1dbe76ef89e7d3e7b995e1dd2e15c2105 /cpp/test/Ice/facets/Server.cpp | |
parent | make depend (diff) | |
download | ice-1547494750fd95418135b9c476d2af928a900e40.tar.bz2 ice-1547494750fd95418135b9c476d2af928a900e40.tar.xz ice-1547494750fd95418135b9c476d2af928a900e40.zip |
fixes
Diffstat (limited to 'cpp/test/Ice/facets/Server.cpp')
-rw-r--r-- | cpp/test/Ice/facets/Server.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/Ice/facets/Server.cpp b/cpp/test/Ice/facets/Server.cpp index 35c7805b1dc..d4434f63d83 100644 --- a/cpp/test/Ice/facets/Server.cpp +++ b/cpp/test/Ice/facets/Server.cpp @@ -29,14 +29,14 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapterWithEndpoints("TestAdapter", endpts); Ice::ObjectPtr d = new DI; adapter->add(d, "d"); - d->_ice_addFacet(d, "facetABCD"); - d->_ice_addFacet(new FI, "facetEF"); - d->_ice_addFacet(new GI(communicator), "facetG"); + d->ice_addFacet(d, "facetABCD"); + d->ice_addFacet(new FI, "facetEF"); + d->ice_addFacet(new GI(communicator), "facetG"); adapter->activate(); communicator->waitForShutdown(); - d->_ice_removeAllFacets(); // Break cyclic dependencies + d->ice_removeAllFacets(); // Break cyclic dependencies return EXIT_SUCCESS; } |