Changeset 123 for branches/generator/Forms/UFormRuleItem.pas
- Timestamp:
- Nov 29, 2017, 3:45:03 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/generator/Forms/UFormRuleItem.pas
r122 r123 16 16 ButtonCancel: TButton; 17 17 ButtonOk: TButton; 18 CheckBoxAnyExcept: TCheckBox; 18 19 CheckBoxOptional: TCheckBox; 19 20 CheckBoxRepetitive: TCheckBox; … … 134 135 CheckBoxOptional.Checked := RuleItem.Optional; 135 136 CheckBoxRepetitive.Checked := RuleItem.Repetitive; 137 CheckBoxAnyExcept.Checked := RuleItem.AnyExcept; 136 138 TFormRuleItems(FormRuleItems).LoadData(RuleItem.SubItems); 137 139 UpdateInterface; … … 150 152 RuleItem.Optional := CheckBoxOptional.Checked; 151 153 RuleItem.Repetitive := CheckBoxRepetitive.Checked; 154 RuleItem.AnyExcept := CheckBoxAnyExcept.Checked; 152 155 end; 153 156
Note:
See TracChangeset
for help on using the changeset viewer.