Ignore:
Timestamp:
Apr 20, 2012, 12:14:51 PM (12 years ago)
Author:
chronos
Message:
  • Modified: CoolAudio will be used as components in component palette.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • CoolAudio/UPlaylist.pas

    r275 r347  
    11unit UPlaylist;
    22
    3 {$mode objfpc}{$H+}
     3{$mode delphi}{$H+}
    44
    55interface
     
    1515  { TPlaylist }
    1616
    17   TPlaylist = class
     17  TPlaylist = class(TComponent)
    1818    Items: TObjectList; // TObjectList<TPlaylistItem>
    19     constructor Create;
     19    constructor Create(AOwner: TComponent);
    2020    destructor Destroy; override;
    2121  end;
     
    2626{ TPlaylist }
    2727
    28 constructor TPlaylist.Create;
     28constructor TPlaylist.Create(AOwner: TComponent);
    2929begin
     30  inherited;
    3031  Items := TObjectList.Create;
    3132end;
Note: See TracChangeset for help on using the changeset viewer.