mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 15:39:30 +02:00
lcl: remove dummy constructor and destructor from TMouse class
git-svn-id: trunk@22035 -
This commit is contained in:
parent
a3d64e981d
commit
89b271b14f
@ -2227,8 +2227,6 @@ type
|
|||||||
function GetDragThreshold: Integer;
|
function GetDragThreshold: Integer;
|
||||||
procedure SetDragThreshold(const AValue: Integer);
|
procedure SetDragThreshold(const AValue: Integer);
|
||||||
public
|
public
|
||||||
constructor Create;
|
|
||||||
destructor Destroy; override;
|
|
||||||
property Capture: HWND read GetCapture write SetCapture;
|
property Capture: HWND read GetCapture write SetCapture;
|
||||||
property CursorPos: TPoint read GetCursorPos write SetCursorPos;
|
property CursorPos: TPoint read GetCursorPos write SetCursorPos;
|
||||||
property IsDragging: Boolean read GetIsDragging;
|
property IsDragging: Boolean read GetIsDragging;
|
||||||
|
@ -18,18 +18,7 @@
|
|||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
}
|
}
|
||||||
|
|
||||||
constructor TMouse.Create;
|
function TMouse.GetCapture: HWND;
|
||||||
begin
|
|
||||||
inherited Create;
|
|
||||||
end;
|
|
||||||
|
|
||||||
destructor TMouse.destroy;
|
|
||||||
begin
|
|
||||||
inherited destroy;
|
|
||||||
end;
|
|
||||||
|
|
||||||
|
|
||||||
function TMouse.GetCapture : HWND;
|
|
||||||
begin
|
begin
|
||||||
Result := FCapture;
|
Result := FCapture;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user