You've already forked lazarus-ccr
Drop sfExcel3 and sfExcel4 from list of file formats. Update demos, chm help file and wiki.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3238 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
Binary file not shown.
@ -18,7 +18,7 @@ uses
|
|||||||
|
|
||||||
type
|
type
|
||||||
{@@ File formats suppored by fpspreadsheet }
|
{@@ File formats suppored by fpspreadsheet }
|
||||||
TsSpreadsheetFormat = (sfExcel2, sfExcel3, sfExcel4, sfExcel5, sfExcel8,
|
TsSpreadsheetFormat = (sfExcel2, {sfExcel3, sfExcel4,} sfExcel5, sfExcel8,
|
||||||
sfOOXML, sfOpenDocument, sfCSV, sfWikiTable_Pipes, sfWikiTable_WikiMedia);
|
sfOOXML, sfOpenDocument, sfCSV, sfWikiTable_Pipes, sfWikiTable_WikiMedia);
|
||||||
|
|
||||||
const
|
const
|
||||||
@ -1250,8 +1250,10 @@ function GetFileFormatName(AFormat: TsSpreadsheetFormat): string;
|
|||||||
begin
|
begin
|
||||||
case AFormat of
|
case AFormat of
|
||||||
sfExcel2 : Result := 'BIFF2';
|
sfExcel2 : Result := 'BIFF2';
|
||||||
|
{
|
||||||
sfExcel3 : Result := 'BIFF3';
|
sfExcel3 : Result := 'BIFF3';
|
||||||
sfExcel4 : Result := 'BIFF4';
|
sfExcel4 : Result := 'BIFF4';
|
||||||
|
}
|
||||||
sfExcel5 : Result := 'BIFF5';
|
sfExcel5 : Result := 'BIFF5';
|
||||||
sfExcel8 : Result := 'BIFF8';
|
sfExcel8 : Result := 'BIFF8';
|
||||||
sfooxml : Result := 'OOXML';
|
sfooxml : Result := 'OOXML';
|
||||||
|
Reference in New Issue
Block a user