mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-09 21:39:19 +02:00
LazReport, make lrOfficeImport package compile with previous fpSpreadSheet versions than trunk version, issue #26728
git-svn-id: trunk@46255 -
This commit is contained in:
parent
48591ac3cc
commit
0813f5c4ce
@ -138,11 +138,11 @@ begin
|
||||
FWorksheet := FWorkbook.GetFirstWorksheet;
|
||||
|
||||
Y:=0;
|
||||
for Row:=0 to FWorksheet.GetLastRowIndex(False)-1 do
|
||||
for Row:=0 to FWorksheet.GetLastRowIndex-1 do
|
||||
begin
|
||||
X:=0;
|
||||
DY:=CalcRowHeight(FWorksheet.GetRowHeight(Row));
|
||||
for Col:=0 to FWorksheet.GetLastColIndex(false)-1 do
|
||||
for Col:=0 to FWorksheet.GetLastColIndex-1 do
|
||||
begin
|
||||
Cell := FWorksheet.FindCell(Row, Col);
|
||||
if Assigned(Cell) then
|
||||
|
Loading…
Reference in New Issue
Block a user