lcl: fix TDragObjectEx and other Ex object Create constructors (by patch of Hans-Peter Diettrich, part of #0013427)

git-svn-id: trunk@19187 -
This commit is contained in:
paul 2009-04-01 14:23:44 +00:00
parent ef83008c93
commit e9ab826ce1
2 changed files with 7 additions and 4 deletions

View File

@ -345,7 +345,7 @@ type
function GetDragCursor(Accepted: Boolean; X, Y: Integer): TCursor; virtual;
public
constructor Create(AControl: TControl); virtual;
constructor AutoCreate(AControl: TControl); virtual;
constructor AutoCreate(AControl: TControl);
procedure HideDragImage; virtual;
procedure ShowDragImage; virtual;

View File

@ -66,7 +66,8 @@ end;
constructor TDragObjectEx.Create(AControl: TControl);
begin
inherited AutoCreate(AControl);
inherited Create(AControl);
FAutoCreated := True;
end;
{ TDragControlObject }
@ -88,7 +89,8 @@ end;
constructor TDragControlObjectEx.Create(AControl: TControl);
begin
inherited AutoCreate(AControl);
inherited Create(AControl);
FAutoCreated := True;
end;
{ TDragDockObject }
@ -114,7 +116,8 @@ end;
constructor TDragDockObjectEx.Create(AControl: TControl);
begin
inherited AutoCreate(AControl);
inherited Create(AControl);
FAutoCreated := True;
end;
// included by controls.pp