Changeset 424 for trunk/Packages/CevoComponents/Sound.pas
- Timestamp:
- Apr 25, 2022, 6:22:53 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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;
Note:
See TracChangeset
for help on using the changeset viewer.