diff options
author | Douglas Mencken <dougmencken@gmail.com> | 2014-02-24 11:21:33 -0500 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-02-25 13:41:14 +0000 |
commit | 52d3e89bc2a6af3f7411c1d95de879c106580d76 (patch) | |
tree | bf55be6801dbf5691c201db79135944504f13a97 /svl | |
parent | 54ce662d3043fc0b892d8f000a6f5877e32b7325 (diff) |
svl: don't forget about big-endian parts in filerec.cxx
Fixes:
(build error) filerec.cxx:591: error: no match for 'operator>>'
Change-Id: I412cc9121c50830069e8e71c35dfb4f8ce475357
Reviewed-on: https://gerrit.libreoffice.org/8206
Tested-by: Michael Stahl <mstahl@redhat.com>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/filerec/filerec.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/filerec/filerec.cxx b/svl/source/filerec/filerec.cxx index 3a7b24b9c2b2..5d397ea0fd2f 100644 --- a/svl/source/filerec/filerec.cxx +++ b/svl/source/filerec/filerec.cxx @@ -588,7 +588,7 @@ bool SfxMultiRecordReader::ReadHeader_Impl() _pStream->Read( _pContentOfs, sizeof(sal_uInt32)*_nContentCount ); #else for ( sal_uInt16 n = 0; n < _nContentCount; ++n ) - *_pStream >> _pContentOfs[n]; + _pStream->ReadUInt32( _pContentOfs[n] ); #endif _pStream->Seek( nContentPos ); } |