Changeset 53 for trunk/IDE/Forms/UFormTargets.pas
- Timestamp:
- Jun 26, 2012, 7:23:47 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IDE/Forms/UFormTargets.pas
r45 r53 31 31 32 32 uses 33 U FormMain, UCompiler, UFormCompilerSettings, UProducer, UTarget;33 UCore, UFormMain, UCompiler, UFormCompilerSettings, UProducer, UTarget; 34 34 35 35 resourcestring … … 46 46 procedure TFormTargets.ListView1Data(Sender: TObject; Item: TListItem); 47 47 begin 48 if (Item.Index >= 0) and (Item.Index < FormMain.Compiler.Targets.Count) then49 with TTarget( FormMain.Compiler.Targets[Item.Index]) do begin48 if (Item.Index >= 0) and (Item.Index < Core.Compiler.Targets.Count) then 49 with TTarget(Core.Compiler.Targets[Item.Index]) do begin 50 50 Item.Caption := Name; 51 Item.Data := FormMain.Compiler.Targets[Item.Index];51 Item.Data := Core.Compiler.Targets[Item.Index]; 52 52 //Item.SubItems.Add(Producer.CompilerPath); 53 53 end; … … 66 66 procedure TFormTargets.ReloadList; 67 67 begin 68 ListView1.Items.Count := FormMain.Compiler.Targets.Count;68 ListView1.Items.Count := Core.Compiler.Targets.Count; 69 69 ListView1.Refresh; 70 70 end;
Note:
See TracChangeset
for help on using the changeset viewer.