mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-30 07:30:22 +02:00
Jedi Code Format: Suppress "deprecated" warnings.
This commit is contained in:
parent
e81675c3a7
commit
4a30435502
@ -441,10 +441,11 @@ end;
|
||||
|
||||
procedure TFileConverter.Convert;
|
||||
var
|
||||
dwStart, dwElapsed: DWord;
|
||||
dwStart: QWord;
|
||||
dwElapsed: DWord;
|
||||
begin
|
||||
if GetRegSettings.LogTime then
|
||||
dwStart := GetTickCount
|
||||
dwStart := GetTickCount64
|
||||
else
|
||||
dwStart := 0;
|
||||
|
||||
@ -468,7 +469,7 @@ begin
|
||||
|
||||
if GetRegSettings.LogTime then
|
||||
begin
|
||||
dwElapsed := GetTickCount - dwStart;
|
||||
dwElapsed := GetTickCount64 - dwStart;
|
||||
Log.Write('Run took ' + FloatToStr(dwElapsed / 1000) + ' seconds')
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user