mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 620416 - hopefully useless null check of aCol in nsTreeBodyFrame::GetCellAt
r=enn a=dbaron
This commit is contained in:
parent
1278fea739
commit
987ebea9dd
@ -1670,8 +1670,7 @@ nsTreeBodyFrame::GetCellAt(nscoord aX, nscoord aY, PRInt32* aRow,
|
||||
|
||||
if (aX >= cellRect.x && aX < cellRect.x + cellRect.width) {
|
||||
// We know the column hit now.
|
||||
if (aCol)
|
||||
*aCol = currCol;
|
||||
*aCol = currCol;
|
||||
|
||||
if (currCol->IsCycler())
|
||||
// Cyclers contain only images. Fill this in immediately and return.
|
||||
|
Loading…
Reference in New Issue
Block a user