Remove unused nsHTMLReflowState::mRightEdge. b=407086 r+sr=roc a=dsicore

This commit is contained in:
dbaron@dbaron.org 2007-12-12 13:50:27 -08:00
parent c119e66f4c
commit a8963504e9
2 changed files with 0 additions and 11 deletions

View File

@ -110,9 +110,6 @@ nsHTMLReflowState::nsHTMLReflowState(nsPresContext* aPresContext,
mPercentHeightObserver = nsnull;
mPercentHeightReflowInitiator = nsnull;
Init(aPresContext);
#ifdef IBMBIDI
mRightEdge = NS_UNCONSTRAINEDSIZE;
#endif
}
static PRBool CheckNextInFlowParenthood(nsIFrame* aFrame, nsIFrame* aParent)
@ -179,10 +176,6 @@ nsHTMLReflowState::nsHTMLReflowState(nsPresContext* aPresContext,
if (aInit) {
Init(aPresContext, aContainingBlockWidth, aContainingBlockHeight);
}
#ifdef IBMBIDI
mRightEdge = aParentReflowState.mRightEdge;
#endif // IBMBIDI
}
inline void

View File

@ -366,10 +366,6 @@ public:
// and never insider a column frame
} mFlags;
#ifdef IBMBIDI
nscoord mRightEdge;
#endif
// Note: The copy constructor is written by the compiler automatically. You
// can use that and then override specific values if you want, or you can
// call Init as desired...