Kaydet (Commit) 35b5cc95 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Fix SvStream::operator>> problem that showed up with the Android gcc 4.4.3

üst 13a752cd
...@@ -1566,8 +1566,11 @@ sal_Bool SbxValue::LoadData( SvStream& r, sal_uInt16 ) ...@@ -1566,8 +1566,11 @@ sal_Bool SbxValue::LoadData( SvStream& r, sal_uInt16 )
// Match the Int on this system? // Match the Int on this system?
if( n > SAL_TYPES_SIZEOFINT ) if( n > SAL_TYPES_SIZEOFINT )
r >> aData.nLong, aData.eType = SbxLONG; r >> aData.nLong, aData.eType = SbxLONG;
else else {
r >> aData.nInt; sal_Int32 nInt;
r >> nInt;
aData.nInt = nInt;
}
break; break;
} }
case SbxUINT: case SbxUINT:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment