fpspreadsheet: Move type declarations from fpspreadsheet.pas to new unit fpstypes.pas. Update all examples.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3887 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2015-01-17 22:57:23 +00:00
parent 5398384975
commit 2bf5464fc6
78 changed files with 729 additions and 665 deletions

View File

@@ -0,0 +1,21 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit laz_fpspreadsheetexport_visual;
interface
uses
fpsexport, fpsexportreg, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('fpsexportreg', @fpsexportreg.Register);
end;
initialization
RegisterPackage('laz_fpspreadsheetexport_visual', @Register);
end.