Changeset 424 for trunk/Packages/CevoComponents/UGraphicSet.pas
- Timestamp:
- Apr 25, 2022, 6:22:53 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/CevoComponents/UGraphicSet.pas
r417 r424 4 4 5 5 uses 6 Classes, SysUtils, Graphics, fgl, LCLType, UPixelPointer, DOM, XMLRead,7 XML Write, UXMLUtils;6 Classes, SysUtils, Graphics, Generics.Collections, LCLType, UPixelPointer, DOM, 7 XMLRead, XMLWrite, UXMLUtils; 8 8 9 9 type … … 31 31 { TGraphicSetItems } 32 32 33 TGraphicSetItems = class(T FPGObjectList<TGraphicSetItem>)33 TGraphicSetItems = class(TObjectList<TGraphicSetItem>) 34 34 GraphicSet: TGraphicSet; 35 35 function SearchByName(Name: string): TGraphicSetItem; … … 59 59 { TGraphicSets } 60 60 61 TGraphicSets = class(T FPGObjectList<TGraphicSet>)61 TGraphicSets = class(TObjectList<TGraphicSet>) 62 62 function SearchByName(Name: string): TGraphicSet; 63 63 function AddNew(Name: string): TGraphicSet;
Note:
See TracChangeset
for help on using the changeset viewer.