Changeset 424 for trunk/Packages/CevoComponents
- Timestamp:
- Apr 25, 2022, 6:22:53 PM (3 years ago)
- Location:
- trunk/Packages/CevoComponents
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/CevoComponents/ScreenTools.pas
r423 r424 8 8 {$ENDIF} 9 9 StringTables, LCLIntf, LCLType, SysUtils, Classes, Graphics, Controls, Math, 10 Forms, Menus, GraphType, fgl,UGraphicSet, LazFileUtils, UTexture;10 Forms, Menus, GraphType, UGraphicSet, LazFileUtils, UTexture; 11 11 12 12 type -
trunk/Packages/CevoComponents/Sound.pas
r423 r424 4 4 5 5 uses 6 SysUtils, Classes, Graphics, Controls, Forms, fgl, FileUtil,6 SysUtils, Classes, Graphics, Controls, Forms, Generics.Collections, FileUtil, 7 7 StringTables, Directories, LCLType 8 8 {$IFDEF WINDOWS}, MMSystem, Windows{$ENDIF} … … 55 55 SoundMode: TSoundMode; 56 56 SoundPlayer: TSoundPlayer; 57 SoundList: T FPGObjectList<TSound>;57 SoundList: TObjectList<TSound>; 58 58 PlayingSound: TSound; 59 59 … … 333 333 procedure UnitInit; 334 334 begin 335 SoundList := T FPGObjectList<TSound>.Create;335 SoundList := TObjectList<TSound>.Create; 336 336 PlayingSound := nil; 337 337 SoundPlayer := nil; -
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.