mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 04:19:19 +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
|
||||
EndTime:=Now;
|
||||
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]));
|
||||
EndConvert(Result);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user