CEF4Delphi is an open source project to embed Chromium-based browsers in applications made with Delphi or Lazarus/FPC for Windows, Linux and MacOS.
1.21k
stars
372
forks
source link
Bug in uCEFMiscFunctions.pas / DateTimeToCefTime function #383
Closed
Gurkan-Aktas closed 3 years ago
Currently day value of the converted date is set to month value.
Result.day_of_month := TempMonth;
must be changed to
Result.day_of_month := TempDay;