This commit is contained in:
kipp 1998-06-26 00:31:44 +00:00
Родитель bfb613401a
Коммит 634974d444
1 изменённых файлов: 2 добавлений и 5 удалений

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

@ -394,10 +394,8 @@ NS_METHOD nsFrame::SetRect(const nsRect& aRect)
NS_METHOD nsFrame::MoveTo(nscoord aX, nscoord aY)
{
if ((aX != mRect.x) || (aY != mRect.y)) {
mRect.x = aX;
mRect.y = aY;
}
mRect.x = aX;
mRect.y = aY;
// Let the view know
if ((nsnull != mView) && (0 == (mState & NS_FRAME_IN_REFLOW))) {
@ -1266,7 +1264,6 @@ NS_METHOD nsFrame::GetOffsetFromView(nsPoint& aOffset, nsIView*& aView) const
frame->GetView(aView);
}
} while ((nsnull != frame) && (nsnull == aView));
return NS_OK;
}