You've already forked lazarus-ccr
fpspreadsheet: Fix test suite to pass all tests in Linux
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4009 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -473,6 +473,8 @@ begin
|
||||
begin
|
||||
if (AFormat = sfExcel2) and (SollDateTimeFormats[Col] in [nfCustom, nfTimeInterval]) then
|
||||
Continue; // The formats nfFmtDateTime and nfTimeInterval are not supported by BIFF2
|
||||
if (AFormat = sfCSV) and (SollDateTimeFormats[Col] in [nfCustom, nfTimeInterval]) then
|
||||
Continue; // No chance for csv to detect custom formats without further information MyWorksheet.WriteDateTime(Row, Col, SollDateTimes[Row], SollDateTimeFormats[Col], SollDateTimeFormatStrings[Col]);
|
||||
MyWorksheet.WriteDateTime(Row, Col, SollDateTimes[Row], SollDateTimeFormats[Col], SollDateTimeFormatStrings[Col]);
|
||||
ActualString := MyWorksheet.ReadAsUTF8Text(Row, Col);
|
||||
CheckEquals(
|
||||
@ -502,6 +504,8 @@ begin
|
||||
begin
|
||||
if (AFormat = sfExcel2) and (SollDateTimeFormats[Col] in [nfCustom, nfTimeInterval]) then
|
||||
Continue; // The formats nfFmtDateTime and nfTimeInterval are not supported by BIFF2
|
||||
if (AFormat = sfCSV) and (SollDateTimeFormats[Col] in [nfCustom, nfTimeInterval]) then
|
||||
Continue; // No chance for csv to detect custom formats without further information ActualString := MyWorksheet.ReadAsUTF8Text(Row,Col);
|
||||
ActualString := MyWorksheet.ReadAsUTF8Text(Row,Col);
|
||||
CheckEquals(
|
||||
Lowercase(SollDateTimeStrings[Row, Col]),
|
||||
|
@ -1477,9 +1477,7 @@ begin
|
||||
// Character array of URL (16-bit-characters, with trailing zero word)
|
||||
SetLength(wideStr, len);
|
||||
AStream.ReadBuffer(wideStr[1], size);
|
||||
SetLength(link, size);
|
||||
len := System.UnicodeToUTF8(PChar(link), PWideChar(wideStr), size);
|
||||
SetLength(link, len);
|
||||
link := UTF8Encode(widestr);
|
||||
end else
|
||||
// Check for local file
|
||||
if GuidToString(guid) = '{00000303-0000-0000-C000-000000000046}' then
|
||||
@ -1527,7 +1525,6 @@ begin
|
||||
// An absolute path must be a fully qualified URI to be compatible with fps
|
||||
if flags and MASK_HLINK_ABSOLUTE <> 0 then
|
||||
FilenameToURI(link);
|
||||
// link := 'file:///' + link;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
Reference in New Issue
Block a user