diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-02-02 16:27:47 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-02-02 16:27:47 +0000 |
commit | 6692636e98a792682184b0fdddfb0798167daf08 (patch) | |
tree | dd03b226d46cfa91d435ad2697d356c3f7ef47dc /cpp/demo/IcePatch2/MFC/PatchClient.cpp | |
parent | added Ice-rpmbuild generation (diff) | |
download | ice-6692636e98a792682184b0fdddfb0798167daf08.tar.bz2 ice-6692636e98a792682184b0fdddfb0798167daf08.tar.xz ice-6692636e98a792682184b0fdddfb0798167daf08.zip |
Use Ice.OA.* properties
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 275fa480d9a..abf5dfb629d 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("IcePatch2.Endpoints").empty()) + if(properties->getProperty("Ice.OA.IcePatch2.Endpoints").empty()) { - properties->setProperty("IcePatch2.Endpoints", "tcp -h 127.0.0.1 -p 10000"); + properties->setProperty("Ice.OA.IcePatch2.Endpoints", "tcp -h 127.0.0.1 -p 10000"); } CPatchDlg dlg(communicator); |