This commit is contained in:
smfr%smfr.org 2005-01-19 07:04:19 +00:00
Родитель d005e511f0
Коммит 9b24898895
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -226,7 +226,7 @@ enum
- (HistoryItem*)childAtIndex:(int)inIndex
{
if (inIndex >= 0 && inIndex < [mChildren count])
if (inIndex >= 0 && inIndex < (int)[mChildren count])
return [mChildren objectAtIndex:inIndex];
return nil;