diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-02-14 13:57:26 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-02-14 13:57:26 +0000 |
commit | c4cbcf3d83cc23ffa1b09ae513799e39f671c054 (patch) | |
tree | 7c37232e433131ca5d788dcb5d909c8efcf2d80d /cpp/demo/IcePatch2/MFC/PatchClient.cpp | |
parent | update x64 components (diff) | |
download | ice-c4cbcf3d83cc23ffa1b09ae513799e39f671c054.tar.bz2 ice-c4cbcf3d83cc23ffa1b09ae513799e39f671c054.tar.xz ice-c4cbcf3d83cc23ffa1b09ae513799e39f671c054.zip |
Removed use of Ice.OA.
Diffstat (limited to 'cpp/demo/IcePatch2/MFC/PatchClient.cpp')
-rwxr-xr-x | cpp/demo/IcePatch2/MFC/PatchClient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/IcePatch2/MFC/PatchClient.cpp b/cpp/demo/IcePatch2/MFC/PatchClient.cpp index abf5dfb629d..275fa480d9a 100755 --- a/cpp/demo/IcePatch2/MFC/PatchClient.cpp +++ b/cpp/demo/IcePatch2/MFC/PatchClient.cpp @@ -63,9 +63,9 @@ CPatchClientApp::InitInstance() } Ice::PropertiesPtr properties = communicator->getProperties(); - if(properties->getProperty("Ice.OA.IcePatch2.Endpoints").empty()) + if(properties->getProperty("IcePatch2.Endpoints").empty()) { - properties->setProperty("Ice.OA.IcePatch2.Endpoints", "tcp -h 127.0.0.1 -p 10000"); + properties->setProperty("IcePatch2.Endpoints", "tcp -h 127.0.0.1 -p 10000"); } CPatchDlg dlg(communicator); |