diff options
author | Michi Henning <michi@zeroc.com> | 2002-07-09 00:59:16 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-07-09 00:59:16 +0000 |
commit | bdc9c404840bfe78a8d6766723e6bce80ea26737 (patch) | |
tree | b4a5426ee9f609393c487f2f7c526e93fc9c4b39 /cpp/demo/IceBox/hello/Client.cpp | |
parent | Fixed INT64MIN -> Int64Min and INT64MAX -> Int64Max in Windows-specific (diff) | |
download | ice-bdc9c404840bfe78a8d6766723e6bce80ea26737.tar.bz2 ice-bdc9c404840bfe78a8d6766723e6bce80ea26737.tar.xz ice-bdc9c404840bfe78a8d6766723e6bce80ea26737.zip |
Change test/inpututil to test/inputUtil. Did the same thing for associated
files, such inputUtil.dsw, etc. (I moved the files in the CVS
repository directly -- if you get errors during updates, just blow the
test/inpututil directory away and update again.)
Fixed INT64MIN/INT64MAX bug in Windows-specific code.
Diffstat (limited to 'cpp/demo/IceBox/hello/Client.cpp')
-rw-r--r-- | cpp/demo/IceBox/hello/Client.cpp | 10 |
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') { |