Bug 319558, crash [@ GetSelectionClosestFrameForChild] due to typo in bug 316281. Remove unwanted semicolon. Patch by Adam Guthrie <ispiked@gmail.com>. r=me

This commit is contained in:
mark%moxienet.com 2005-12-08 18:09:17 +00:00
Родитель 0e628dfa78
Коммит 0e1d9f3154
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2054,7 +2054,7 @@ static FrameTarget GetSelectionClosestFrame(nsIFrame* aFrame, nsPoint aPoint)
} }
} }
} while (kid = kid->GetNextSibling()); } while (kid = kid->GetNextSibling());
if (closestFrame); if (closestFrame)
return GetSelectionClosestFrameForChild(closestFrame, aPoint); return GetSelectionClosestFrameForChild(closestFrame, aPoint);
} }
return FrameTarget(aFrame, PR_FALSE, PR_FALSE); return FrameTarget(aFrame, PR_FALSE, PR_FALSE);