Kaydet (Commit) 1427632d authored tarafından Eike Rathke's avatar Eike Rathke

hopefully fixed MSVC build breaker, ambiguous call to overloaded function

Change-Id: I923846f8ea8d61547aab2aaeab2232439b5e4a72
üst 863ecf68
...@@ -515,7 +515,7 @@ void XclExpSheetProtection::SaveXml( XclExpXmlStream& rStrm ) ...@@ -515,7 +515,7 @@ void XclExpSheetProtection::SaveXml( XclExpXmlStream& rStrm )
{ {
nHash = ((aHash[0] << 8) & 0xFFFF); nHash = ((aHash[0] << 8) & 0xFFFF);
nHash |= (aHash[1] & 0xFF); nHash |= (aHash[1] & 0xFF);
sHash = OString::valueOf( nHash, 16 ); sHash = OString::valueOf( static_cast<sal_Int32>(nHash), 16 );
} }
sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream(); sax_fastparser::FSHelperPtr& rWorksheet = rStrm.GetCurrentStream();
rWorksheet->singleElement( XML_sheetProtection, rWorksheet->singleElement( XML_sheetProtection,
......
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