Changed a bunch more nsIFrame member functions to be pointer arguments

instead of references


git-svn-id: svn://10.0.0.236/trunk@20222 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
troy%netscape.com
1999-02-10 05:38:18 +00:00
parent d76d572b5a
commit 339afcce8a
65 changed files with 225 additions and 217 deletions

View File

@@ -321,13 +321,13 @@ nsAreaFrame::DidReflow(nsIPresContext& aPresContext,
if (!isScrolled) {
nsIView* view;
GetView(view);
GetView(&view);
if (nsnull != view) {
// Position and size view relative to its parent, not relative to our
// parent frame (our parent frame may not have a view).
nsIView* parentWithView;
nsPoint origin;
GetOffsetFromView(origin, parentWithView);
GetOffsetFromView(origin, &parentWithView);
nsIViewManager *vm;
view->GetViewManager(vm);
@@ -459,7 +459,7 @@ nsAreaFrame::Reflow(nsIPresContext& aPresContext,
// XXX Make sure the frame is repainted. For the time being, since we
// have no idea what actually changed repaint it all...
nsIView* view;
nextFrame->GetView(view);
nextFrame->GetView(&view);
if (nsnull != view) {
nsIViewManager* viewMgr;
view->GetViewManager(viewMgr);