diff options
Diffstat (limited to 'cppe/src/IceE/Proxy.cpp')
-rw-r--r-- | cppe/src/IceE/Proxy.cpp | 6 |
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) { |