diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-03-14 03:21:10 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-03-14 03:21:10 +0000 |
commit | ae2adaed5ea928eb85d838f7181ee2b5da68d9a8 (patch) | |
tree | 40f02550cc81f4f66955e31babda9c7d6ed80941 /cpp/demo/Glacier2/chat/Client.cpp | |
parent | fix for bug 127 (diff) | |
download | ice-ae2adaed5ea928eb85d838f7181ee2b5da68d9a8.tar.bz2 ice-ae2adaed5ea928eb85d838f7181ee2b5da68d9a8.tar.xz ice-ae2adaed5ea928eb85d838f7181ee2b5da68d9a8.zip |
Fixed bad name.
Diffstat (limited to 'cpp/demo/Glacier2/chat/Client.cpp')
-rwxr-xr-x | cpp/demo/Glacier2/chat/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/Glacier2/chat/Client.cpp b/cpp/demo/Glacier2/chat/Client.cpp index 92c74b70c0a..786d3bfcf3c 100755 --- a/cpp/demo/Glacier2/chat/Client.cpp +++ b/cpp/demo/Glacier2/chat/Client.cpp @@ -26,7 +26,7 @@ public: } }; -class CallbackClient : public Application +class ChatClient : public Application { public: @@ -152,7 +152,7 @@ private: int main(int argc, char* argv[]) { - CallbackClient app; + ChatClient app; return app.main(argc, argv, "config"); } |