Ignore:
Timestamp:
Apr 2, 2016, 10:01:11 PM (8 years ago)
Author:
chronos
Message:
  • Modified: Parameters for next scan operation is not stored separatelly from scans itself. So changing parameters will not affect current selected scan item.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Form/UFormOperation.pas

    r11 r19  
    2828    procedure UpdateMaxValues;
    2929  public
    30     procedure Load(DriveScan: TDriveScan);
    31     procedure Save(DriveScan: TDriveScan);
     30    procedure Load(DriveScan: TDriveScanProfile);
     31    procedure Save(DriveScan: TDriveScanProfile);
    3232  end;
    3333
     
    5757end;
    5858
    59 procedure TFormOperation.Load(DriveScan: TDriveScan);
     59procedure TFormOperation.Load(DriveScan: TDriveScanProfile);
    6060begin
    6161  ComboBoxRunMode.ItemIndex := Integer(DriveScan.Mode);
     
    6767end;
    6868
    69 procedure TFormOperation.Save(DriveScan: TDriveScan);
     69procedure TFormOperation.Save(DriveScan: TDriveScanProfile);
    7070begin
    7171  DriveScan.Mode := TRunMode(ComboBoxRunMode.ItemIndex);
Note: See TracChangeset for help on using the changeset viewer.