TurboPower_iPro: Fix list index error if ENTER is pressed and no TabItems are present

git-svn-id: trunk@52101 -
This commit is contained in:
wp 2016-04-02 09:01:14 +00:00
parent be0ae8bc36
commit be0a2f9c82

View File

@ -27,7 +27,7 @@ implementation
function TIpHtmlTabList.GetTabItem: TObject;
begin
if FIndex = -1 then
if (FIndex = -1) or (FIndex >= Count) then
Exit(nil)
else
Result := TObject(Items[FIndex]);