+ No optional parameters in 1.0.6

This commit is contained in:
michael 2002-07-21 12:04:49 +00:00
parent 0af1f3883c
commit 44f94bdc9d

View File

@ -23,7 +23,8 @@ unit contnrs;
private
ffreeobjects : boolean;
public
constructor create(freeobjects : boolean = true);
constructor create;
constructor create(freeobjects : boolean);
end;
TOrderedList = class
@ -40,11 +41,21 @@ unit contnrs;
inherited create;
ffreeobjects:=freeobjects;
end;
constructor tobjectlist.create;
begin
inherited create;
ffreeobjects:=True;
end;
end.
{
$Log$
Revision 1.1 2002-07-16 13:34:39 florian
Revision 1.2 2002-07-21 12:04:49 michael
+ No optional parameters in 1.0.6
Revision 1.1 2002/07/16 13:34:39 florian
+ skeleton for contnr.pp added
}