bug 505894 remove double null check r=timeless

This commit is contained in:
Bernd 2010-03-06 10:53:03 +01:00
Родитель 41de842d18
Коммит ad5522015f
1 изменённых файлов: 3 добавлений и 5 удалений

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

@ -319,11 +319,9 @@ nsTableRowGroupFrame::InitChildReflowState(nsPresContext& aPresContext,
nsMargin padding(0,0,0,0);
nsMargin* pCollapseBorder = nsnull;
if (aBorderCollapse) {
if (aReflowState.frame) {
nsTableRowFrame *rowFrame = do_QueryFrame(aReflowState.frame);
if (rowFrame) {
pCollapseBorder = rowFrame->GetBCBorderWidth(collapseBorder);
}
nsTableRowFrame *rowFrame = do_QueryFrame(aReflowState.frame);
if (rowFrame) {
pCollapseBorder = rowFrame->GetBCBorderWidth(collapseBorder);
}
}
aReflowState.Init(&aPresContext, -1, -1, pCollapseBorder, &padding);