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 6c0c186e89a..06fe399d8ba 100644 --- a/cppe/src/IceE/Proxy.cpp +++ b/cppe/src/IceE/Proxy.cpp @@ -196,7 +196,7 @@ IceProxy::Ice::Object::ice_isA(const string& __id, const Context& __context) BasicStream* __stream = __og.stream(); try { - __stream->write(__id, false); + __stream->write(__id); } catch(const ::Ice::LocalException& __ex) { @@ -346,7 +346,7 @@ IceProxy::Ice::Object::ice_ids(const Context& __context) throw ::Ice::UnknownUserException(__FILE__, __LINE__, __ex.ice_name()); } } - __is->read(__ret, false); + __is->read(__ret); } catch(const ::Ice::LocalException& __ex) { @@ -412,7 +412,7 @@ IceProxy::Ice::Object::ice_id(const Context& __context) throw ::Ice::UnknownUserException(__FILE__, __LINE__, __ex.ice_name()); } } - __is->read(__ret, false); + __is->read(__ret); } catch(const ::Ice::LocalException& __ex) { |