ide: fix resource modified state (issue #0015482)

git-svn-id: trunk@23474 -
This commit is contained in:
paul 2010-01-17 11:40:26 +00:00
parent 233a0f9017
commit 956153840c
3 changed files with 6 additions and 1 deletions

View File

@ -15,9 +15,13 @@
<TargetFileExt Value=""/>
<Title Value="Lazarus"/>
<ResourceType Value="res"/>
<Icon Value="0"/>
<UseXPManifest Value="True"/>
<Icon Value="0"/>
</General>
<VersionInfo>
<Language Value="0403"/>
<CharSet Value="04E2"/>
</VersionInfo>
<PublishOptions>
<Version Value="2"/>
<IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/>

Binary file not shown.

View File

@ -395,6 +395,7 @@ begin
for i := 0 to L.Count - 1 do
begin
R := TAbstractProjectResourceClass(L[i]).Create;
R.Modified := False;
R.OnModified := @OnResourceModified;
FResources.Add(R);
end;