Ignore:
Timestamp:
Feb 4, 2011, 1:16:43 PM (13 years ago)
Author:
chronos
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UInstanceOptions.pas

    r6 r7  
    108108
    109109  Edit1.Text := Instance.Name;
    110   if Assigned(Instance.FPCSource) then
    111     Edit2.Text := Instance.FPCSource.GetName
     110  FPCSource := Instance.FPCSource;
     111  IDESource := Instance.IDESource;
     112  if Assigned(FPCSource) then
     113    Edit2.Text := FPCSource.GetName
    112114    else Edit2.Text := '';
    113   if Assigned(Instance.IDESource) then
    114     Edit3.Text := Instance.IDESource.GetName
     115  if Assigned(IDESource) then
     116    Edit3.Text := IDESource.GetName
    115117    else Edit3.Text := '';
    116118end;
Note: See TracChangeset for help on using the changeset viewer.