mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-11 06:20:22 +02:00
IDE: ide info: fixed showing project units only once
git-svn-id: trunk@40159 -
This commit is contained in:
parent
b4ebc18e46
commit
0c54ae136b
@ -275,15 +275,16 @@ begin
|
||||
then begin
|
||||
if not HeaderWritten then begin
|
||||
sl.Add('Project units:');
|
||||
s:=aFile.GetShortFilename(true);
|
||||
if aFile.Modified then
|
||||
s:=s+' Modified';
|
||||
if aFile.SessionModified then
|
||||
s:=s+' SessionModified';
|
||||
if (aFile.Source<>nil) and (aFile.Source.Modified) then
|
||||
s:=s+' Source.Modified';
|
||||
sl.Add(s);
|
||||
HeaderWritten:=true;
|
||||
end;
|
||||
s:=aFile.GetShortFilename(true);
|
||||
if aFile.Modified then
|
||||
s:=s+' Modified';
|
||||
if aFile.SessionModified then
|
||||
s:=s+' SessionModified';
|
||||
if (aFile.Source<>nil) and (aFile.Source.Modified) then
|
||||
s:=s+' Source.Modified';
|
||||
sl.Add(s);
|
||||
end;
|
||||
aFile:=aFile.NextPartOfProject;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user