summaryrefslogtreecommitdiff
path: root/cppe/test/IceE/facets/Collocated.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/test/IceE/facets/Collocated.cpp')
-rw-r--r--cppe/test/IceE/facets/Collocated.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cppe/test/IceE/facets/Collocated.cpp b/cppe/test/IceE/facets/Collocated.cpp
index 3057be10780..b3244fe6257 100644
--- a/cppe/test/IceE/facets/Collocated.cpp
+++ b/cppe/test/IceE/facets/Collocated.cpp
@@ -36,12 +36,12 @@ public:
Ice::ObjectAdapterPtr adapter = communicator()->createObjectAdapter("TestAdapter");
Ice::ObjectPtr d = new DI;
- adapter->add(d, Ice::stringToIdentity("d"));
- adapter->addFacet(d, Ice::stringToIdentity("d"), "facetABCD");
+ adapter->add(d, communicator()->stringToIdentity("d"));
+ adapter->addFacet(d, communicator()->stringToIdentity("d"), "facetABCD");
Ice::ObjectPtr f = new FI;
- adapter->addFacet(f, Ice::stringToIdentity("d"), "facetEF");
+ adapter->addFacet(f, communicator()->stringToIdentity("d"), "facetEF");
Ice::ObjectPtr h = new HI(communicator());
- adapter->addFacet(h, Ice::stringToIdentity("d"), "facetGH");
+ adapter->addFacet(h, communicator()->stringToIdentity("d"), "facetGH");
adapter->activate();
GPrx allTests(const Ice::CommunicatorPtr&);