1
0
mirror of https://github.com/salvadordf/CEF4Delphi.git synced 2025-06-12 22:07:39 +02:00

Fixed deprecated GetLocaleFormatSettings symbol warning thanks to dilfich

This commit is contained in:
Salvador Díaz Fau
2021-03-08 14:24:26 +01:00
parent 1515e2bf99
commit b9c57057b8
2 changed files with 2 additions and 2 deletions

View File

@ -2173,7 +2173,7 @@ begin
{$IFDEF FPC}
TempFormatSettings.DecimalSeparator := '.';
{$ELSE}
{$IFDEF DELPHI26_UP}
{$IFDEF DELPHI24_UP}
TempFormatSettings := TFormatSettings.Create('en-US');
{$ELSE}
GetLocaleFormatSettings(GetThreadLocale, TempFormatSettings);