summaryrefslogtreecommitdiff
path: root/cpp/demo/IcePatch2/MFC/PatchClient.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2013-01-24 23:10:22 +0100
committerJose <jose@zeroc.com>2013-01-24 23:10:22 +0100
commit47cc21ee10c01fee3f5643a54baa9fff6e1f2cc0 (patch)
treec32cc6957025399fb9b202e61f44f844bc890811 /cpp/demo/IcePatch2/MFC/PatchClient.cpp
parentFix VS2010 compilation warning (diff)
downloadice-47cc21ee10c01fee3f5643a54baa9fff6e1f2cc0.tar.bz2
ice-47cc21ee10c01fee3f5643a54baa9fff6e1f2cc0.tar.xz
ice-47cc21ee10c01fee3f5643a54baa9fff6e1f2cc0.zip
Fixed (ICE-4993) - Inconsistent naming of IcePatch2 properties
Diffstat (limited to 'cpp/demo/IcePatch2/MFC/PatchClient.cpp')
-rw-r--r--cpp/demo/IcePatch2/MFC/PatchClient.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/IcePatch2/MFC/PatchClient.cpp b/cpp/demo/IcePatch2/MFC/PatchClient.cpp
index f444d846393..37100529e3b 100644
--- 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("IcePatch2Client.Proxy").empty())
{
- properties->setProperty("IcePatch2.Endpoints", "tcp -h 127.0.0.1 -p 10000");
+ properties->setProperty("IcePatch2Client.Proxy", "IcePatch2/server:tcp -h localhost -p 10000");
}
CPatchDlg dlg(communicator);