summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/facets/Server.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-11-14 13:29:26 +0000
committerMarc Laukien <marc@zeroc.com>2001-11-14 13:29:26 +0000
commit1547494750fd95418135b9c476d2af928a900e40 (patch)
treed0c251a1dbe76ef89e7d3e7b995e1dd2e15c2105 /cpp/test/Ice/facets/Server.cpp
parentmake depend (diff)
downloadice-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.cpp8
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;
}