summaryrefslogtreecommitdiff
path: root/oox/source/ole/axbinaryreader.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-15 10:28:41 +0200
committerNoel Grandin <noel@peralex.com>2014-12-19 08:50:30 +0200
commitae5d78d605bcb2a849f88cdfddfaf5cf1d5ebf64 (patch)
tree805c70a6595d9031e9bd5a08dd740439345f6a7b /oox/source/ole/axbinaryreader.cxx
parent4cbba98601ae16cda1739e1e81d697592bb31213 (diff)
remove operator>> and operator<< methods
in favour of ReadXXX/WriteXXX methods Change-Id: I75fcb04cb9e2981a10146a96de27916ca7f6bc57
Diffstat (limited to 'oox/source/ole/axbinaryreader.cxx')
-rw-r--r--oox/source/ole/axbinaryreader.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/oox/source/ole/axbinaryreader.cxx b/oox/source/ole/axbinaryreader.cxx
index b06910786669..62835ee713a3 100644
--- a/oox/source/ole/axbinaryreader.cxx
+++ b/oox/source/ole/axbinaryreader.cxx
@@ -129,7 +129,8 @@ AxBinaryPropertyReader::ComplexProperty::~ComplexProperty()
bool AxBinaryPropertyReader::PairProperty::readProperty( AxAlignedInputStream& rInStrm )
{
- rInStrm >> mrPairData.first >> mrPairData.second;
+ mrPairData.first = rInStrm.readInt32();
+ mrPairData.second = rInStrm.readInt32();
return true;
}