You've already forked lazarus-ccr
fpspreadsheet: Fix incorrect detection of number format with thousand separator in ods
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3128 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -910,7 +910,7 @@ begin
|
|||||||
nf := nfGeneral
|
nf := nfGeneral
|
||||||
else begin
|
else begin
|
||||||
decs := StrToInt(s);
|
decs := StrToInt(s);
|
||||||
grouping := GetAttrValue(node, 'grouping') = 'true';
|
grouping := GetAttrValue(node, 'number:grouping') = 'true';
|
||||||
nf := IfThen(grouping, nfFixedTh, nfFixed);
|
nf := IfThen(grouping, nfFixedTh, nfFixed);
|
||||||
end;
|
end;
|
||||||
fmt := BuildNumberFormatString(nf, Workbook.FormatSettings, decs);
|
fmt := BuildNumberFormatString(nf, Workbook.FormatSettings, decs);
|
||||||
|
Reference in New Issue
Block a user