lcl: remove dummy constructor and destructor from TMouse class

git-svn-id: trunk@22035 -
This commit is contained in:
paul 2009-10-05 03:25:02 +00:00
parent a3d64e981d
commit 89b271b14f
2 changed files with 1 additions and 14 deletions

View File

@ -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;

View File

@ -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;