Kaydet (Commit) 70d473c0 authored tarafından Fridrich Štrba's avatar Fridrich Štrba

Blind Hail Mary trying to solve tinderbox breakages

Change-Id: Ic69195e2ae991cf837c3dcfb086d9834f99b2d40
üst f327c359
...@@ -173,7 +173,7 @@ WPXInputStream *WPXSvInputStream::getDocumentOLEStream(const char *name) ...@@ -173,7 +173,7 @@ WPXInputStream *WPXSvInputStream::getDocumentOLEStream(const char *name)
else if (mxChildrenStorages.back()->IsStorage(aElems[i])) else if (mxChildrenStorages.back()->IsStorage(aElems[i]))
{ {
SotStorageRef &tmpParent(mxChildrenStorages.back()); SotStorageRef &tmpParent(mxChildrenStorages.back());
mxChildrenStorages.push_back(tmpParent->OpenSotStorage(aElems[i++], STREAM_STD_READ)); mxChildrenStorages.push_back(static_cast<SotStorageRef>(tmpParent->OpenSotStorage(aElems[i++], STREAM_STD_READ)));
} }
else else
// should not happen // should not happen
...@@ -186,8 +186,8 @@ WPXInputStream *WPXSvInputStream::getDocumentOLEStream(const char *name) ...@@ -186,8 +186,8 @@ WPXInputStream *WPXSvInputStream::getDocumentOLEStream(const char *name)
if (i >= aElems.size()) if (i >= aElems.size())
return 0; return 0;
mxChildrenStreams.push_back( mxChildrenStorages.back()->OpenSotStream( mxChildrenStreams.push_back( static_cast<SotStorageStreamRef>(mxChildrenStorages.back()->OpenSotStream(
aElems[i], STREAM_STD_READ )); aElems[i], STREAM_STD_READ )));
mxSeekable->seek(tmpPosition); mxSeekable->seek(tmpPosition);
......
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