mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-15 19:09:35 +02:00
fpc doesn't allow extended(AnInteger) anymore in mode delphi, since Delphi doesn't allow it either
git-svn-id: trunk@8732 -
This commit is contained in:
parent
5125dffdf8
commit
a9e4ccfa2a
@ -2653,7 +2653,7 @@ var
|
||||
s: String;
|
||||
begin
|
||||
DecodeDate(DateTime, Yr, Mo, Dy);
|
||||
s := Format('%g', [Abs(Extended(TimeZoneBias)/60)]);
|
||||
s := Format('%g', [Abs(TimeZoneBias/60)]);
|
||||
if Length(s) = 1 then
|
||||
s := '0' + s;
|
||||
if TimeZoneBias < 0 then s := '-' + s;
|
||||
|
Loading…
Reference in New Issue
Block a user