fpspreadsheet: Rename TsWorksheet.ReadProtection to TsWorksheet.ReadCellProtection

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5785 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2017-03-05 10:52:50 +00:00
parent a22f013b21
commit 3d454bf83b

View File

@ -203,7 +203,7 @@ type
function ReadVertAlignment(ACell: PCell): TsVertAlignment;
function ReadWordwrap(ACell: PCell): boolean;
function ReadBiDiMode(ACell: PCell): TsBiDiMode;
function ReadProtection(ACell: PCell): TsCellProtections;
function ReadCellProtection(ACell: PCell): TsCellProtections;
function IsEmpty: Boolean;
@ -3516,9 +3516,9 @@ end;
Returns the protection flags of the cell.
NOTE: These flags are active only if sheet protection is active, i.e.
spCells in Worksheet.Protection.
soProtected in Worksheet.Options.
-------------------------------------------------------------------------------}
function TsWorksheet.ReadProtection(ACell: PCell): TsCellProtections;
function TsWorksheet.ReadCellProtection(ACell: PCell): TsCellProtections;
var
fmt: PsCellFormat;
begin