diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-04-14 01:39:51 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-04-14 01:39:51 +0000 |
commit | e47d3049cf181fc408a947a821510bced5675298 (patch) | |
tree | 359356567a6f7e4123aff7ef62c04127e4611994 /cpp/demo/Ice/session/Client.cpp | |
parent | fixed some Linux build errors. (diff) | |
download | ice-e47d3049cf181fc408a947a821510bced5675298.tar.bz2 ice-e47d3049cf181fc408a947a821510bced5675298.tar.xz ice-e47d3049cf181fc408a947a821510bced5675298.zip |
fix.
Diffstat (limited to 'cpp/demo/Ice/session/Client.cpp')
-rwxr-xr-x | cpp/demo/Ice/session/Client.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/demo/Ice/session/Client.cpp b/cpp/demo/Ice/session/Client.cpp index eb992793aef..66bf16663c5 100755 --- a/cpp/demo/Ice/session/Client.cpp +++ b/cpp/demo/Ice/session/Client.cpp @@ -73,7 +73,7 @@ menu() cout << "usage:\n" "c: create new hello\n" - "0-9: greeting identified hello object\n" + "0-9: greet hello object\n" "s: shutdown server\n" "x: exit\n" "?: help\n"; @@ -131,7 +131,8 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) } else { - cout << "index is too high. " << hellos.size() << " exist so far." << endl; + cout << "index is too high. " << hellos.size() << " exist so far. " + << "Use 'c' to create a new hello object." << endl; } } else if(c == 'c') |