TAChart: Fix typo in TChartComboBox.GetSelectedPenStyle

git-svn-id: trunk@54098 -
This commit is contained in:
wp 2017-02-05 23:06:34 +00:00
parent b0c1d9e402
commit 23a786cefb

View File

@ -1075,7 +1075,7 @@ end;
procedure TChartComboBox.SetSelectedPenWidth(const AValue: Integer);
begin
ItemIndex := EnsureRange(FPenWidth - 1, 0, Items.Count - 1);
ItemIndex := EnsureRange(AValue - 1, 0, Items.Count - 1);
end;
procedure TChartCombobox.SetSelectedPointerStyle(const AValue: TSeriesPointerStyle);