the view manager is now used when manipulating views.

git-svn-id: svn://10.0.0.236/trunk@3891 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
michaelp
1998-06-16 16:51:01 +00:00
parent 90a0523f94
commit 84b3c23319

View File

@@ -121,7 +121,9 @@ nsInputFrame::MoveTo(nscoord aX, nscoord aY)
nsIView* parentWithView;
nsPoint origin;
GetOffsetFromView(origin, parentWithView);
view->SetPosition(origin.x, origin.y);
nsIViewManager *vm = view->GetViewManager();
vm->MoveViewTo(view, origin.x, origin.y);
NS_RELEASE(vm);
NS_IF_RELEASE(parentWithView);
NS_RELEASE(view);
}
@@ -141,7 +143,9 @@ nsInputFrame::SizeTo(nscoord aWidth, nscoord aHeight)
GetView(view);
if (nsnull != view) {
// XXX combo boxes need revision, they cannot have their height altered
view->SetDimensions(aWidth, aHeight);
nsIViewManager *vm = view->GetViewManager();
vm->ResizeView(view, aWidth, aHeight);
NS_RELEASE(vm);
NS_RELEASE(view);
}
return NS_OK;