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:
juha 2016-01-14 21:18:41 +00:00
parent 06164b5f5f
commit 0eceab81b7

View File

@ -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;