summaryrefslogtreecommitdiff
path: root/plugins/Utils.pas
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Utils.pas')
-rw-r--r--plugins/Utils.pas/playlist.pas6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Utils.pas/playlist.pas b/plugins/Utils.pas/playlist.pas
index ca33c000e3..b7f5b95f5b 100644
--- a/plugins/Utils.pas/playlist.pas
+++ b/plugins/Utils.pas/playlist.pas
@@ -29,7 +29,7 @@ type
public
constructor Create(fname:PWideChar);
- destructor Free;
+ destructor Destroy;
procedure SetBasePath(path:PWideChar);
@@ -268,7 +268,7 @@ begin
SetBasePath(fname);
end;
-destructor tPlaylist.Free;
+destructor tPlaylist.Destroy;
var
i:integer;
begin
@@ -285,7 +285,7 @@ begin
end;
plStrings:=nil;
- inherited Free;
+ inherited;
end;
procedure tPlaylist.AddLine(name,descr:PWideChar;new:boolean=true);