mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 10:19:12 +02:00
Converter: Do not show "Conversion took: xx:yy:zz" when conversion is aborted. Issue #29396, patch from Bart.
git-svn-id: trunk@51288 -
This commit is contained in:
parent
06164b5f5f
commit
0eceab81b7
@ -1023,7 +1023,7 @@ begin
|
|||||||
finally
|
finally
|
||||||
EndTime:=Now;
|
EndTime:=Now;
|
||||||
s:=FormatDateTime('hh:nn:ss', EndTime-StartTime);
|
s:=FormatDateTime('hh:nn:ss', EndTime-StartTime);
|
||||||
if s<>'00:00:00' then
|
if (Result<>mrAbort) and (s<>'00:00:00') then
|
||||||
fSettings.AddLogLine(Format(lisConvDelphiConversionTook, [s]));
|
fSettings.AddLogLine(Format(lisConvDelphiConversionTook, [s]));
|
||||||
EndConvert(Result);
|
EndConvert(Result);
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user