Bug 1277129 Part 7b - Rename various ReflowState variables to ReflowInput. r=dbaron
This patch is generated by the following script:
function rename() {
find .\
-type f\
! -path "./obj*"\
! -path "./.git"\
! -path "./.hg"\
\( -name "*.cpp" -or\
-name "*.h" \)\
-exec sed -i -r "s/$1/$2/g" "{}" \;
}
rename "([[:alpha:]]*)([rR])eflowState(s?)" "\1\2eflowInput\3"
MozReview-Commit-ID: ITFO7uMTkSb
This commit is contained in:
@@ -161,7 +161,7 @@ nsSelectsAreaFrame::BuildDisplayListInternal(nsDisplayListBuilder* aBuilder,
|
||||
void
|
||||
nsSelectsAreaFrame::Reflow(nsPresContext* aPresContext,
|
||||
ReflowOutput& aDesiredSize,
|
||||
const ReflowInput& aReflowState,
|
||||
const ReflowInput& aReflowInput,
|
||||
nsReflowStatus& aStatus)
|
||||
{
|
||||
nsListControlFrame* list = GetEnclosingListFrame(this);
|
||||
@@ -173,7 +173,7 @@ nsSelectsAreaFrame::Reflow(nsPresContext* aPresContext,
|
||||
|
||||
// See similar logic in nsListControlFrame::Reflow and
|
||||
// nsListControlFrame::ReflowAsDropdown. We need to match it here.
|
||||
WritingMode wm = aReflowState.GetWritingMode();
|
||||
WritingMode wm = aReflowInput.GetWritingMode();
|
||||
nscoord oldBSize;
|
||||
if (isInDropdownMode) {
|
||||
// Store the block size now in case it changes during
|
||||
@@ -185,7 +185,7 @@ nsSelectsAreaFrame::Reflow(nsPresContext* aPresContext,
|
||||
}
|
||||
}
|
||||
|
||||
nsBlockFrame::Reflow(aPresContext, aDesiredSize, aReflowState, aStatus);
|
||||
nsBlockFrame::Reflow(aPresContext, aDesiredSize, aReflowInput, aStatus);
|
||||
|
||||
// Check whether we need to suppress scrollbar updates. We want to do
|
||||
// that if we're in a possible first pass and our block size of a row
|
||||
|
||||
Reference in New Issue
Block a user