summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/admin/TestI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/admin/TestI.cpp')
-rw-r--r--cpp/test/Ice/admin/TestI.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/test/Ice/admin/TestI.cpp b/cpp/test/Ice/admin/TestI.cpp
index 3cd1188aa1f..64ab0d191af 100644
--- a/cpp/test/Ice/admin/TestI.cpp
+++ b/cpp/test/Ice/admin/TestI.cpp
@@ -88,23 +88,23 @@ RemoteCommunicatorI::getChanges(const Ice::Current&)
}
void
-RemoteCommunicatorI::print(const std::string& message, const Ice::Current&)
+RemoteCommunicatorI::print(ICE_IN(std::string) message, const Ice::Current&)
{
_communicator->getLogger()->print(message);
}
void
-RemoteCommunicatorI::trace(const std::string& category,
- const std::string& message, const Ice::Current&)
+RemoteCommunicatorI::trace(ICE_IN(std::string) category,
+ ICE_IN(std::string) message, const Ice::Current&)
{
_communicator->getLogger()->trace(category, message);
}
void
-RemoteCommunicatorI::warning(const std::string& message, const Ice::Current&)
+RemoteCommunicatorI::warning(ICE_IN(std::string) message, const Ice::Current&)
{
_communicator->getLogger()->warning(message);
}
void
-RemoteCommunicatorI::error(const std::string& message, const Ice::Current&)
+RemoteCommunicatorI::error(ICE_IN(std::string) message, const Ice::Current&)
{
_communicator->getLogger()->error(message);
}
@@ -142,7 +142,7 @@ RemoteCommunicatorI::updated(const Ice::PropertyDict& changes)
}
Test::RemoteCommunicatorPrxPtr
-RemoteCommunicatorFactoryI::createCommunicator(const Ice::PropertyDict& props, const Ice::Current& current)
+RemoteCommunicatorFactoryI::createCommunicator(ICE_IN(Ice::PropertyDict) props, const Ice::Current& current)
{
//
// Prepare the property set using the given properties.