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
|
||||
else begin
|
||||
decs := StrToInt(s);
|
||||
grouping := GetAttrValue(node, 'grouping') = 'true';
|
||||
grouping := GetAttrValue(node, 'number:grouping') = 'true';
|
||||
nf := IfThen(grouping, nfFixedTh, nfFixed);
|
||||
end;
|
||||
fmt := BuildNumberFormatString(nf, Workbook.FormatSettings, decs);
|
||||
|
Reference in New Issue
Block a user