mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-25 04:44:23 +02:00
TCustomCheckBox.AllowGray defaults to false.
git-svn-id: trunk@6540 -
This commit is contained in:
parent
70b4d7f37a
commit
73ba16e348
@ -101,7 +101,7 @@ begin
|
||||
Inherited Create(TheOwner);
|
||||
fCompStyle := csCheckbox;
|
||||
FState := cbUnchecked;
|
||||
FAllowGrayed := True;
|
||||
FAllowGrayed := false;
|
||||
TabStop := true;
|
||||
SetInitialBounds(0,0,90,23);
|
||||
AutoSize:=true;
|
||||
@ -227,6 +227,9 @@ end;
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.29 2005/01/11 13:25:23 vincents
|
||||
TCustomCheckBox.AllowGray defaults to false.
|
||||
|
||||
Revision 1.28 2005/01/01 19:36:40 mattias
|
||||
fixed loading TRadioButton.Checked
|
||||
|
||||
|
@ -857,7 +857,7 @@ type
|
||||
constructor Create(TheOwner: TComponent); override;
|
||||
public
|
||||
property AutoSize default true;
|
||||
property AllowGrayed: Boolean read FAllowGrayed write FAllowGrayed default True;
|
||||
property AllowGrayed: Boolean read FAllowGrayed write FAllowGrayed default false;
|
||||
property State: TCheckBoxState read GetState write SetState;
|
||||
property TabStop default true;
|
||||
property UseOnChange;
|
||||
@ -1216,6 +1216,9 @@ end.
|
||||
{ =============================================================================
|
||||
|
||||
$Log$
|
||||
Revision 1.182 2005/01/11 13:25:23 vincents
|
||||
TCustomCheckBox.AllowGray defaults to false.
|
||||
|
||||
Revision 1.181 2005/01/08 22:13:21 vincents
|
||||
TLabel.ShowAccelChar default value is True
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user