summaryrefslogtreecommitdiff
path: root/cpp/demo/IceBox/hello/Client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/demo/IceBox/hello/Client.cpp')
-rw-r--r--cpp/demo/IceBox/hello/Client.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/demo/IceBox/hello/Client.cpp b/cpp/demo/IceBox/hello/Client.cpp
index 6270caf14b8..823102983ab 100644
--- a/cpp/demo/IceBox/hello/Client.cpp
+++ b/cpp/demo/IceBox/hello/Client.cpp
@@ -68,23 +68,23 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
cin >> c;
if(c == 't')
{
- twoway->hello();
+ twoway->sayHello();
}
else if(c == 'o')
{
- oneway->hello();
+ oneway->sayHello();
}
else if(c == 'O')
{
- batchOneway->hello();
+ batchOneway->sayHello();
}
else if(c == 'd')
{
- datagram->hello();
+ datagram->sayHello();
}
else if(c == 'D')
{
- batchDatagram->hello();
+ batchDatagram->sayHello();
}
else if(c == 'f')
{