mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 15:48:03 +02:00
TSpinEditEx: declare property SpinButtonWidth in the base class.
This commit is contained in:
parent
a10a426ac7
commit
424f279df4
@ -167,6 +167,7 @@ type
|
|||||||
property UpDownVisible: Boolean read GetBuddyVisible write SetBuddyVisible default True;
|
property UpDownVisible: Boolean read GetBuddyVisible write SetBuddyVisible default True;
|
||||||
property MinRepeatValue: Byte read FMinRepeatValue write SetMinRepeatValue default DefMinRepeatValue;
|
property MinRepeatValue: Byte read FMinRepeatValue write SetMinRepeatValue default DefMinRepeatValue;
|
||||||
property Orientation: TUDOrientation read GetOrientation write SetOrientation default udVertical;
|
property Orientation: TUDOrientation read GetOrientation write SetOrientation default udVertical;
|
||||||
|
property SpinButtonWidth: Integer read GetBuddyWidth write SetBuddyWidth;
|
||||||
public
|
public
|
||||||
constructor Create(TheOwner: TComponent); override;
|
constructor Create(TheOwner: TComponent); override;
|
||||||
function GetLimitedValue(const AValue: T): T; virtual;
|
function GetLimitedValue(const AValue: T): T; virtual;
|
||||||
@ -268,7 +269,7 @@ type
|
|||||||
property PopupMenu;
|
property PopupMenu;
|
||||||
property ReadOnly;
|
property ReadOnly;
|
||||||
property ShowHint;
|
property ShowHint;
|
||||||
property SpinButtonWidth: Integer read GetBuddyWidth write SetBuddyWidth default 0;
|
property SpinButtonWidth;
|
||||||
property TabOrder;
|
property TabOrder;
|
||||||
property TabStop;
|
property TabStop;
|
||||||
property TextHint;
|
property TextHint;
|
||||||
@ -377,7 +378,7 @@ type
|
|||||||
property PopupMenu;
|
property PopupMenu;
|
||||||
property ReadOnly;
|
property ReadOnly;
|
||||||
property ShowHint;
|
property ShowHint;
|
||||||
property SpinButtonWidth: Integer read GetBuddyWidth write SetBuddyWidth default 0;
|
property SpinButtonWidth;
|
||||||
property TabOrder;
|
property TabOrder;
|
||||||
property TabStop;
|
property TabStop;
|
||||||
property TextHint;
|
property TextHint;
|
||||||
|
Loading…
Reference in New Issue
Block a user