diff options
Diffstat (limited to 'cpp/demo/Ice/hello/Client.cpp')
-rw-r--r-- | cpp/demo/Ice/hello/Client.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/demo/Ice/hello/Client.cpp b/cpp/demo/Ice/hello/Client.cpp index 1541d533202..8f96ae31395 100644 --- a/cpp/demo/Ice/hello/Client.cpp +++ b/cpp/demo/Ice/hello/Client.cpp @@ -69,23 +69,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') { |