mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 22:29:28 +02:00
* cast empty string to char no longer compiles
(cherry picked from commit 2f81580e04
)
This commit is contained in:
parent
a8393a31c0
commit
97cba6bbdf
@ -335,7 +335,7 @@ begin
|
||||
ExportSettings.ExportFormat:=AccessCompatible;
|
||||
ExportFormat:=efXMLXSDAccess;
|
||||
ExportSettings.CreateXSD:=false;
|
||||
ExportSettings.DecimalSeparator:=char(''); //don't override
|
||||
ExportSettings.DecimalSeparator:=#0; //don't override
|
||||
Exporter.FileName := FExportTempDir + inttostr(ord(ExportFormat)) +
|
||||
lowercase(rightstr(TestName,5)) +
|
||||
TDetailedExportExtensions[ExportFormat];
|
||||
@ -391,7 +391,7 @@ begin
|
||||
ExportSettings.ExportFormat:=AccessCompatible;
|
||||
ExportFormat:=efXMLXSDAccess;
|
||||
ExportSettings.CreateXSD:=true;
|
||||
ExportSettings.DecimalSeparator:=char(''); //don't override
|
||||
ExportSettings.DecimalSeparator:=char(#0); //don't override
|
||||
Exporter.FileName := FExportTempDir + inttostr(ord(ExportFormat)) +
|
||||
lowercase(rightstr(TestName,5)) +
|
||||
TDetailedExportExtensions[ExportFormat];
|
||||
|
Loading…
Reference in New Issue
Block a user