Changeset 137 for trunk/Application/UWebObjects.pas
- Timestamp:
- Sep 9, 2022, 1:16:58 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/UWebObjects.pas
r132 r137 1 1 unit UWebObjects; 2 2 3 {$mode delphi}4 5 3 interface 6 4 7 5 uses 8 Classes, SysUtils, UHtmlClasses, UXmlClasses, SpecializedDictionary, fgl; 6 Classes, SysUtils, UHtmlClasses, UXmlClasses, SpecializedDictionary, 7 Generics.Collections; 9 8 10 9 type … … 34 33 { TQueryFormItemList } 35 34 36 TQueryFormItemList = class(T FPGObjectList<TQueryFormItem>)35 TQueryFormItemList = class(TObjectList<TQueryFormItem>) 37 36 function FindByName(AValue: string): TQueryFormItem; 38 37 end; … … 49 48 end; 50 49 51 TQueryFormGroups = class(T FPGObjectList<TQueryFormGroup>)50 TQueryFormGroups = class(TObjectList<TQueryFormGroup>) 52 51 end; 53 52 … … 57 56 end; 58 57 59 TQueryActions = class(T FPGObjectList<TQueryAction>)58 TQueryActions = class(TObjectList<TQueryAction>) 60 59 end; 61 60
Note:
See TracChangeset
for help on using the changeset viewer.