mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 07:58:07 +02:00
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:
parent
ef83008c93
commit
e9ab826ce1
@ -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;
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user