diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-03-26 14:49:01 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-03-26 14:49:01 +0000 |
commit | 737b4f7ae612af1d35b17c50dc2ed20aa7e62f25 (patch) | |
tree | 4fed4b1451ec87ac5b3fae5df5c5454a814190f9 /cppe/src/IceE/Outgoing.cpp | |
parent | Temporary fix (diff) | |
download | ice-737b4f7ae612af1d35b17c50dc2ed20aa7e62f25.tar.bz2 ice-737b4f7ae612af1d35b17c50dc2ed20aa7e62f25.tar.xz ice-737b4f7ae612af1d35b17c50dc2ed20aa7e62f25.zip |
Removed StringConverter
Diffstat (limited to 'cppe/src/IceE/Outgoing.cpp')
-rw-r--r-- | cppe/src/IceE/Outgoing.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/cppe/src/IceE/Outgoing.cpp b/cppe/src/IceE/Outgoing.cpp index 5a5c775674d..2dc7074d463 100644 --- a/cppe/src/IceE/Outgoing.cpp +++ b/cppe/src/IceE/Outgoing.cpp @@ -49,9 +49,7 @@ IceInternal::Outgoing::Outgoing(Connection* connection, Reference* ref, const st _connection(connection), _reference(ref), _state(StateUnsent), - _stream(ref->getInstance().get(), ref->getInstance()->messageSizeMax(), - ref->getInstance()->initializationData().stringConverter, - ref->getInstance()->initializationData().wstringConverter) + _stream(ref->getInstance().get(), ref->getInstance()->messageSizeMax()) { switch(_reference->getMode()) { @@ -96,7 +94,7 @@ IceInternal::Outgoing::Outgoing(Connection* connection, Reference* ref, const st _stream.write(_reference->getFacet()); } - _stream.write(operation, false); + _stream.write(operation); _stream.write(static_cast<Byte>(mode)); @@ -309,7 +307,7 @@ IceInternal::Outgoing::finished(BasicStream& is) } string operation; - _stream.read(operation, false); + _stream.read(operation); RequestFailedException* ex; switch(static_cast<DispatchStatus>(status)) @@ -359,7 +357,7 @@ IceInternal::Outgoing::finished(BasicStream& is) // exception, you will have a memory leak. // string unknown; - _stream.read(unknown, false); + _stream.read(unknown); UnknownException* ex; switch(static_cast<DispatchStatus>(status)) |