Changeset 25 for trunk/Forms/UFormImportFormat.pas
- Timestamp:
- May 8, 2016, 10:56:38 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormImportFormat.pas
r22 r25 16 16 ButtonOk: TButton; 17 17 ButtonCancel: TButton; 18 EditBlockEnd: TEdit; 19 EditBlockStart: TEdit; 18 20 EditName: TEdit; 19 21 EditAcronymStart: TEdit; … … 30 32 Label6: TLabel; 31 33 Label7: TLabel; 34 Label8: TLabel; 35 Label9: TLabel; 32 36 private 33 37 { private declarations } … … 49 53 begin 50 54 EditName.Text := ImportFormat.Name; 55 EditBlockStart.Text := ImportFormat.Block.StartString; 56 EditBlockEnd.Text := ImportFormat.Block.EndString; 51 57 EditAcronymStart.Text := ImportFormat.Acronym.StartString; 52 58 EditAcronymEnd.Text := ImportFormat.Acronym.EndString; … … 60 66 begin 61 67 ImportFormat.Name := EditName.Text; 68 ImportFormat.Block.StartString := EditBlockStart.Text; 69 ImportFormat.Block.EndString := EditBlockEnd.Text; 62 70 ImportFormat.Acronym.StartString := EditAcronymStart.Text; 63 71 ImportFormat.Acronym.EndString := EditAcronymEnd.Text;
Note:
See TracChangeset
for help on using the changeset viewer.