diff options
Diffstat (limited to 'tools.pas')
-rw-r--r-- | tools.pas | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -378,7 +378,10 @@ begin rb:=0; for i:=0 to erg.count-1 do if not gut xor (rightStr(erg[i],4)=': OK') then begin - result[gut].add(leftStr(erg[i],pos(':',erg[i])-1)); + s:=leftStr(erg[i],pos(':',erg[i])-1); + if leftStr(s,1)<>'/' then + s:=extractfilepath(sumNam)+s; + result[gut].add(s); inc(rb); end; end; |