You've already forked lazarus-ccr
fpspreadsheet: In expression parser, use double quotes (instead of single quots) to identify strings (Excel/OO/LO standard)
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3502 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -69,7 +69,7 @@ begin
|
||||
case formula[i].ElementKind of
|
||||
fekCell : Write(' / cell: ' +GetCellString(formula[i].Row, formula[i].Col, formula[i].RelFlags));
|
||||
fekNum : Write(' / number value: ', FloatToStr(formula[i].DoubleValue));
|
||||
fekString : Write(' / string value: ', formula[i].StringValue);
|
||||
fekString : Write(' / string value: "', formula[i].StringValue, '"');
|
||||
fekBool : Write(' / boolean value: ', BoolToStr(formula[i].DoubleValue <> 0));
|
||||
end;
|
||||
WriteLn;
|
||||
|
Reference in New Issue
Block a user