Changeset 103 for trunk/Application/UWebObjects.pas
- Timestamp:
- Oct 8, 2012, 8:48:16 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/UWebObjects.pas
r100 r103 67 67 ClassId: string; 68 68 function AddNewGroup: TQueryFormGroup; 69 function AddNewAction : TQueryAction;69 function AddNewAction(Caption, Action: string): TQueryAction; 70 70 procedure Load(Items: TDictionaryStringString); 71 71 constructor Create; … … 192 192 end; 193 193 194 function TQueryForm.AddNewAction : TQueryAction;194 function TQueryForm.AddNewAction(Caption, Action: string): TQueryAction; 195 195 begin 196 196 Result := TQueryAction(Actions.AddNew(TQueryAction.Create)); 197 Result.Caption := Caption; 198 Result.Action := Action; 197 199 end; 198 200
Note:
See TracChangeset
for help on using the changeset viewer.