diff options
author | Michi Henning <michi@zeroc.com> | 2003-06-26 05:12:04 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2003-06-26 05:12:04 +0000 |
commit | 59248eaddcbe2db56b655176f30278c5b6938b8e (patch) | |
tree | c005216681efaf7bb13133c22e28ee3a2eaf7605 /cpp/demo/IceBox/hello/HelloServiceI.cpp | |
parent | got rid of unnecessary _communicator member. (diff) | |
download | ice-59248eaddcbe2db56b655176f30278c5b6938b8e.tar.bz2 ice-59248eaddcbe2db56b655176f30278c5b6938b8e.tar.xz ice-59248eaddcbe2db56b655176f30278c5b6938b8e.zip |
Got rid of various unnecessary _communicator members.
Diffstat (limited to 'cpp/demo/IceBox/hello/HelloServiceI.cpp')
-rw-r--r-- | cpp/demo/IceBox/hello/HelloServiceI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/demo/IceBox/hello/HelloServiceI.cpp b/cpp/demo/IceBox/hello/HelloServiceI.cpp index 90c523593b0..c4f93d562f7 100644 --- a/cpp/demo/IceBox/hello/HelloServiceI.cpp +++ b/cpp/demo/IceBox/hello/HelloServiceI.cpp @@ -46,7 +46,7 @@ HelloServiceI::start(const string& name, const ::Ice::StringSeq& args) { _adapter = communicator->createObjectAdapter(name); - ::Ice::ObjectPtr object = new HelloI(communicator); + ::Ice::ObjectPtr object = new HelloI; _adapter->add(object, ::Ice::stringToIdentity("hello")); _adapter->activate(); } |