diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-11-09 00:47:34 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-11-09 00:47:34 +0000 |
commit | c0664bc0215959468dbd9eac2db517f92704f120 (patch) | |
tree | b67c583771632e25501ae1a092588397fbb6875a /cpp/demo/Freeze/library/Server.cpp | |
parent | fixing compiler warnings (diff) | |
download | ice-c0664bc0215959468dbd9eac2db517f92704f120.tar.bz2 ice-c0664bc0215959468dbd9eac2db517f92704f120.tar.xz ice-c0664bc0215959468dbd9eac2db517f92704f120.zip |
fixing type id
Diffstat (limited to 'cpp/demo/Freeze/library/Server.cpp')
-rw-r--r-- | cpp/demo/Freeze/library/Server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/demo/Freeze/library/Server.cpp b/cpp/demo/Freeze/library/Server.cpp index 859b2e9304d..9edf8fc19b9 100644 --- a/cpp/demo/Freeze/library/Server.cpp +++ b/cpp/demo/Freeze/library/Server.cpp @@ -74,7 +74,7 @@ LibraryServer::run(int argc, char* argv[]) // Create and install a factory for books. // ObjectFactoryPtr bookFactory = new BookFactory(library); - communicator()->addObjectFactory(bookFactory, "::Book"); + communicator()->addObjectFactory(bookFactory, "::Demo::Book"); // // Everything ok, let's go. |