You've already forked lazarus-ccr
* fpspreadsheet: cosmetic
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3625 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -80,11 +80,11 @@ Type
|
|||||||
procedure RegisterFPSExportFormat;
|
procedure RegisterFPSExportFormat;
|
||||||
procedure UnRegisterFPSExportFormat;
|
procedure UnRegisterFPSExportFormat;
|
||||||
|
|
||||||
Const
|
const
|
||||||
SFPSExport = 'xls';
|
SFPSExport = 'xls';
|
||||||
SPFSFilter = '*.xls'; //todo: add others?
|
SPFSExtension = '.xls'; //todo: add others?
|
||||||
|
|
||||||
ResourceString
|
resourcestring
|
||||||
SFPSDescription = 'Spreadsheet files';
|
SFPSDescription = 'Spreadsheet files';
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
@ -199,12 +199,12 @@ end;
|
|||||||
|
|
||||||
procedure RegisterFPSExportFormat;
|
procedure RegisterFPSExportFormat;
|
||||||
begin
|
begin
|
||||||
RegisterExportFormat(SFPSExport,SFPSDescription,SPFSFilter,TFPSExport);
|
ExportFormats.RegisterExportFormat(SFPSExport,SFPSDescription,SPFSExtension,TFPSExport);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure UnRegisterFPSExportFormat;
|
procedure UnRegisterFPSExportFormat;
|
||||||
begin
|
begin
|
||||||
UnregisterExportFormat(SFPSExport);
|
ExportFormats.UnregisterExportFormat(SFPSExport);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ TFPSExportFormatSettings }
|
{ TFPSExportFormatSettings }
|
||||||
|
Reference in New Issue
Block a user