mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-03 20:21:20 +02:00
lclc: replace TList by TFPList in RadioGroup
git-svn-id: trunk@34810 -
This commit is contained in:
parent
191c64eb4d
commit
347a6e1953
@ -597,7 +597,7 @@ type
|
||||
TCustomRadioGroup = class(TCustomGroupBox)
|
||||
private
|
||||
FAutoFill: Boolean;
|
||||
FButtonList: TList; // list of TRadioButton
|
||||
FButtonList: TFPList; // list of TRadioButton
|
||||
FColumnLayout: TColumnLayout;
|
||||
FColumns: integer;
|
||||
FCreatingWnd: boolean;
|
||||
|
@ -40,7 +40,7 @@ begin
|
||||
TStringList(FItems).OnChange := @ItemsChanged;
|
||||
FItemIndex := -1;
|
||||
FLastClickedItemIndex := -1;
|
||||
FButtonList := TList.Create;
|
||||
FButtonList := TFPList.Create;
|
||||
FColumns := 1;
|
||||
FColumnLayout := clHorizontalThenVertical;
|
||||
ChildSizing.Layout:=cclLeftToRightThenTopToBottom;
|
||||
|
Loading…
Reference in New Issue
Block a user