summaryrefslogtreecommitdiff
path: root/cpp/demo/Ice/hello/Client.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2003-01-09 17:31:16 +0000
committerBenoit Foucher <benoit@zeroc.com>2003-01-09 17:31:16 +0000
commit05f926e502b050be27095af00821307e7c99bf27 (patch)
tree5836cfc2fdb5199576da031fb629adb22e8ab1ce /cpp/demo/Ice/hello/Client.cpp
parentShutdown the communicator if on IllegalStateException (diff)
downloadice-05f926e502b050be27095af00821307e7c99bf27.tar.bz2
ice-05f926e502b050be27095af00821307e7c99bf27.tar.xz
ice-05f926e502b050be27095af00821307e7c99bf27.zip
Removed _STLP_USE_NEWALLOC since it's not supposed to be a per-project
configuration but depends on the STLport installation (see stl_user_config.h).
Diffstat (limited to 'cpp/demo/Ice/hello/Client.cpp')
-rw-r--r--cpp/demo/Ice/hello/Client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/demo/Ice/hello/Client.cpp b/cpp/demo/Ice/hello/Client.cpp
index be8571d7a71..37497859bb7 100644
--- a/cpp/demo/Ice/hello/Client.cpp
+++ b/cpp/demo/Ice/hello/Client.cpp
@@ -40,7 +40,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
{
Ice::PropertiesPtr properties = communicator->getProperties();
const char* proxyProperty = "Hello.Proxy";
- std::string proxy = properties->getProperty(proxyProperty);
+ string proxy = properties->getProperty(proxyProperty);
if(proxy.empty())
{
cerr << argv[0] << ": property `" << proxyProperty << "' not set" << endl;