mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-10 03:48:27 +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;
|
||||
procedure SetDragThreshold(const AValue: Integer);
|
||||
public
|
||||
constructor Create;
|
||||
destructor Destroy; override;
|
||||
property Capture: HWND read GetCapture write SetCapture;
|
||||
property CursorPos: TPoint read GetCursorPos write SetCursorPos;
|
||||
property IsDragging: Boolean read GetIsDragging;
|
||||
|
@ -18,18 +18,7 @@
|
||||
*****************************************************************************
|
||||
}
|
||||
|
||||
constructor TMouse.Create;
|
||||
begin
|
||||
inherited Create;
|
||||
end;
|
||||
|
||||
destructor TMouse.destroy;
|
||||
begin
|
||||
inherited destroy;
|
||||
end;
|
||||
|
||||
|
||||
function TMouse.GetCapture : HWND;
|
||||
function TMouse.GetCapture: HWND;
|
||||
begin
|
||||
Result := FCapture;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user