You've already forked lazarus-ccr
TRxDateEdit - publish property Spacing (from lazarus rev. 51277)
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4423 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -131,6 +131,8 @@ type
|
||||
public
|
||||
constructor Create(AOwner: TComponent); override;
|
||||
destructor Destroy; override;
|
||||
published
|
||||
property Spacing default 0;
|
||||
end;
|
||||
|
||||
TRxLookupEdit = class(TRxCustomDBLookupEdit)
|
||||
@ -614,6 +616,7 @@ var
|
||||
P:TBitmap;
|
||||
begin
|
||||
inherited Create(AOwner);
|
||||
Spacing:=0;
|
||||
FLocateObject:=CreateLocate(nil);
|
||||
|
||||
//Lookup
|
||||
|
@ -198,6 +198,7 @@ type
|
||||
property WeekendColor;
|
||||
property Weekends;
|
||||
property YearDigits;
|
||||
property Spacing default 0;
|
||||
|
||||
property OnAcceptDate;
|
||||
property OnChange;
|
||||
@ -376,6 +377,7 @@ end;
|
||||
constructor TRxDateEdit.Create(AOwner: TComponent);
|
||||
begin
|
||||
inherited Create(AOwner);
|
||||
Spacing:=0;
|
||||
UpdateMask;
|
||||
end;
|
||||
|
||||
|
Reference in New Issue
Block a user