lclc: replace TList by TFPList in RadioGroup

git-svn-id: trunk@34810 -
This commit is contained in:
blikblum 2012-01-19 23:32:02 +00:00
parent 191c64eb4d
commit 347a6e1953
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;