|
@@ -82,7 +82,7 @@ type
|
|
|
protected
|
|
protected
|
|
|
procedure OnButtonClick(Sender: TObject; {%H-}Button: TMouseButton;
|
|
procedure OnButtonClick(Sender: TObject; {%H-}Button: TMouseButton;
|
|
|
{%H-}Shift: TShiftState; {%H-}X, {%H-}Y: integer); override;
|
|
{%H-}Shift: TShiftState; {%H-}X, {%H-}Y: integer); override;
|
|
|
- procedure PressVirtKey(p: longint);
|
|
|
|
|
|
|
+ procedure PressVirtKey(p: PtrInt);
|
|
|
public
|
|
public
|
|
|
constructor Create(AOwner: TComponent); override;
|
|
constructor Create(AOwner: TComponent); override;
|
|
|
published
|
|
published
|
|
@@ -166,7 +166,7 @@ begin
|
|
|
FOnUserChange(Self);
|
|
FOnUserChange(Self);
|
|
|
end;
|
|
end;
|
|
|
|
|
|
|
|
-procedure TBCRealNumericKeyboard.PressVirtKey(p: longint);
|
|
|
|
|
|
|
+procedure TBCRealNumericKeyboard.PressVirtKey(p: PtrInt);
|
|
|
begin
|
|
begin
|
|
|
KeyInput.Down(p);
|
|
KeyInput.Down(p);
|
|
|
KeyInput.Up(p);
|
|
KeyInput.Up(p);
|