summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/Proxy.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-05-02 19:10:56 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-05-02 19:10:56 +0000
commit643bb663b019016db089777143d6ba7e8a4ff0ea (patch)
tree95aecc5b75c658ae0c8abc287434f604b9eb1bd8 /cppe/src/IceE/Proxy.cpp
parentMAke wstring optional for IceE (diff)
downloadice-643bb663b019016db089777143d6ba7e8a4ff0ea.tar.bz2
ice-643bb663b019016db089777143d6ba7e8a4ff0ea.tar.xz
ice-643bb663b019016db089777143d6ba7e8a4ff0ea.zip
Make Wstring optional for IceE
Diffstat (limited to 'cppe/src/IceE/Proxy.cpp')
-rw-r--r--cppe/src/IceE/Proxy.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cppe/src/IceE/Proxy.cpp b/cppe/src/IceE/Proxy.cpp
index 357d43dd63a..f8704226b24 100644
--- a/cppe/src/IceE/Proxy.cpp
+++ b/cppe/src/IceE/Proxy.cpp
@@ -169,7 +169,7 @@ IceProxy::Ice::Object::ice_isA(const string& __id, const Context* __context)
BasicStream* __stream = __og.stream();
try
{
- __stream->write(__id);
+ __stream->write(__id, false);
}
catch(const ::Ice::LocalException& __ex)
{
@@ -307,7 +307,7 @@ IceProxy::Ice::Object::ice_ids(const Context* __context)
throw ::Ice::UnknownUserException(__FILE__, __LINE__, __ex.ice_name());
}
}
- __is->read(__ret);
+ __is->read(__ret, false);
}
catch(const ::Ice::LocalException& __ex)
{
@@ -367,7 +367,7 @@ IceProxy::Ice::Object::ice_id(const Context* __context)
throw ::Ice::UnknownUserException(__FILE__, __LINE__, __ex.ice_name());
}
}
- __is->read(__ret);
+ __is->read(__ret, false);
}
catch(const ::Ice::LocalException& __ex)
{