diff options
author | Mark Spruiell <mes@zeroc.com> | 2016-05-11 16:00:50 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2016-05-11 16:00:50 -0700 |
commit | 90cabc84eb79a5d2541cc81d840174e42906cfc4 (patch) | |
tree | 7dbff320dc75fea22bd33aa1b819ba6a0c455696 /python/modules/IcePy/Operation.cpp | |
parent | stream API fix (diff) | |
download | ice-90cabc84eb79a5d2541cc81d840174e42906cfc4.tar.bz2 ice-90cabc84eb79a5d2541cc81d840174e42906cfc4.tar.xz ice-90cabc84eb79a5d2541cc81d840174e42906cfc4.zip |
stream API fixes for scripting languages
Diffstat (limited to 'python/modules/IcePy/Operation.cpp')
-rw-r--r-- | python/modules/IcePy/Operation.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/modules/IcePy/Operation.cpp b/python/modules/IcePy/Operation.cpp index 6d4e3660fb2..76b1b5e419c 100644 --- a/python/modules/IcePy/Operation.cpp +++ b/python/modules/IcePy/Operation.cpp @@ -1589,7 +1589,7 @@ IcePy::TypedInvocation::prepareRequest(PyObject* args, MappingType mapping, Ice: if(_op->sendsClasses) { - os->writePendingObjects(); + os->writePendingValues(); } os->endEncapsulation(); @@ -1682,7 +1682,7 @@ IcePy::TypedInvocation::unmarshalResults(const pair<const Ice::Byte*, const Ice: if(_op->returnsClasses) { - is.readPendingObjects(); + is.readPendingValues(); } is.endEncapsulation(); @@ -3288,7 +3288,7 @@ IcePy::TypedUpcall::dispatch(PyObject* servant, const pair<const Ice::Byte*, con if(_op->sendsClasses) { - is.readPendingObjects(); + is.readPendingValues(); } is.endEncapsulation(); @@ -3496,7 +3496,7 @@ IcePy::TypedUpcall::response(PyObject* args, const Ice::EncodingVersion& encodin if(_op->returnsClasses) { - os.writePendingObjects(); + os.writePendingValues(); } os.endEncapsulation(); |