fix runnable compilation messages not shown anymore

This commit is contained in:
Basile Burg 2014-11-11 06:11:03 +01:00
parent 12c6a2cf8d
commit 48c28bffcb
1 changed files with 4 additions and 6 deletions

View File

@ -1222,7 +1222,10 @@ begin
try
processOutputToStrings(proc, lst);
if proc = fRunProc then for str in lst do
subjLmFromString(fLogMessager, str, fDoc, amcEdit, amkBub);
subjLmFromString(fLogMessager, str, fDoc, amcEdit, amkBub)
else if proc.Executable = DCompiler then
for str in lst do
subjLmFromString(fLogMessager, str, fDoc, amcEdit, amkAuto);
finally
lst.Free;
end;
@ -1245,11 +1248,6 @@ begin
subjLmFromString(fLogMessager, str, fDoc, amcEdit, amkBub);
FreeRunnableProc;
// runnable compiler
end else
if proc.Executable = DCompiler then
begin
for str in lst do
subjLmFromString(fLogMessager, str, fDoc, amcEdit, amkAuto);
end;
finally
lst.Free;