- removed third argument in calls of FinishComponentCreate

git-svn-id: trunk@10877 -
This commit is contained in:
paul 2007-04-05 05:45:46 +00:00
parent eafe2a1c03
commit 2ba157cdd9

View File

@ -208,12 +208,10 @@ var
ParentForm: TCustomForm;
CompStyle : Longint;
DoFinishComp,
SetupProps : Boolean;
ACustomForm: TCustomForm;
begin
P := nil;
DoFinishComp := True;
SetupProps := False;
CompStyle := GetCompStyle(Sender);
//Caption := GetCaption(Sender);
@ -288,7 +286,7 @@ begin
gnome_widget_add_help(Pointer(Handle), nil);
If DoFinishComp then
FinishComponentCreate(Sender, P, SetupProps);
FinishComponentCreate(Sender, P);
Result:=THandle(P);
end;