You've already forked lazarus-ccr
fpspreadsheet: Fix merged ranges sometimes being read incorrectly from ods files.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6032 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@@ -3585,7 +3585,7 @@ var
|
||||
if nodeName = 'table:covered-table-cell' then
|
||||
begin
|
||||
s := GetAttrValue(cellNode, 'table:number-columns-repeated');
|
||||
if s = '' then colsRepeated := 1;
|
||||
if s = '' then colsRepeated := 1 else colsRepeated := StrToInt(s);
|
||||
end else
|
||||
colsRepeated := 0;
|
||||
|
||||
|
@@ -4419,7 +4419,7 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
// Here begins the drawing loop of all cells in the row between gc and gclast
|
||||
// Here begins the drawing loop of all cells in the row between gc and gcLast
|
||||
while (gc <= gcLast) do begin
|
||||
gr := ARow;
|
||||
rct := AClipRect;
|
||||
|
Reference in New Issue
Block a user