You've already forked lazarus-ccr
fpspreadsheet: Fix meta data reading error of some ods files. Avoid display of metadata zero dates in Excel.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7583 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@@ -3185,7 +3185,8 @@ begin
|
||||
// Strip milliseconds?
|
||||
p := Pos('.', s);
|
||||
if (p > 1) then begin
|
||||
ms := StrToFloat('0' + Copy(s, p, MaxInt), fs);
|
||||
ms := StrToFloat('0' + Copy(s, p, MaxInt), fs) / SecsPerDay;
|
||||
s := copy(s, 1, p-1);
|
||||
end else
|
||||
ms := 0;
|
||||
Result := StrToDateTime(s, fs) + ms;
|
||||
|
Reference in New Issue
Block a user