XlsFormat - fix bugs, add ColorScale

This commit is contained in:
ElenaSubbotina
2016-08-11 17:54:13 +03:00
parent b49b824670
commit 00596f43c6
18 changed files with 361 additions and 19 deletions

View File

@ -144,6 +144,11 @@ bool COfficeFileFormatChecker::isXlsFormatFile (POLE::Storage * storage)
if (stream2.read(buffer,10) >0)
return true;
POLE::Stream stream3(storage, "WORKBOOK");
if (stream3.read(buffer,10) >0)
return true;
return false;
}
bool COfficeFileFormatChecker::isPptFormatFile (POLE::Storage * storage)