diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-08-08 05:14:16 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-08-08 05:14:16 +0000 |
commit | 1f2bcf804162014a6e5c428a9d973f1d8b149a97 (patch) | |
tree | beade943ec3fabfe7d2fe11ca1495128b96352ce /cppe/demo/IceE/callback/Server.cpp | |
parent | Fixed bug with Log implementation. (diff) | |
download | ice-1f2bcf804162014a6e5c428a9d973f1d8b149a97.tar.bz2 ice-1f2bcf804162014a6e5c428a9d973f1d8b149a97.tar.xz ice-1f2bcf804162014a6e5c428a9d973f1d8b149a97.zip |
Added seperate CE resource files. Fixed font problems. Cleaned up and fixed
bugs with MFC demos.
Diffstat (limited to 'cppe/demo/IceE/callback/Server.cpp')
-rw-r--r-- | cppe/demo/IceE/callback/Server.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cppe/demo/IceE/callback/Server.cpp b/cppe/demo/IceE/callback/Server.cpp index 15adc29acbc..c45d183c03c 100644 --- a/cppe/demo/IceE/callback/Server.cpp +++ b/cppe/demo/IceE/callback/Server.cpp @@ -11,13 +11,12 @@ #include <CallbackI.h> using namespace std; -using namespace Ice; using namespace Demo; int run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { - ObjectAdapterPtr adapter = communicator->createObjectAdapter("Callback.Server"); + Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("Callback.Server"); adapter->add(new CallbackI, Ice::stringToIdentity("callback")); adapter->activate(); communicator->waitForShutdown(); |