fpspreadsheet: Fix csv writer ignoring blank cells ("WriteBlank")

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4678 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2016-06-06 14:27:52 +00:00
parent 51630a3d94
commit a57c29c56a

View File

@ -291,7 +291,7 @@ procedure TsCSVWriter.WriteBlank(AStream: TStream; const ARow, ACol: Cardinal;
begin
Unused(AStream);
Unused(ARow, ACol, ACell);
// nothing to do
FCSVBuilder.AppendCell('');
end;
{ Write boolean cell to stream formatted as string }