Rename a frame property that I missed in a mass-rename. a2.0=blocking (Bug 563584)

This commit is contained in:
L. David Baron 2010-08-19 09:37:59 -04:00
parent 4417a5e49c
commit 219e24a238
2 changed files with 3 additions and 3 deletions

View File

@ -379,7 +379,6 @@ GK_ATOM(flex, "flex")
GK_ATOM(flexgroup, "flexgroup")
GK_ATOM(floating, "floating")
GK_ATOM(floatList, "Float-list")
GK_ATOM(floatContinuationsList, "FloatContinuations-list")
GK_ATOM(floor, "floor")
GK_ATOM(focus, "focus")
GK_ATOM(following, "following")
@ -780,6 +779,7 @@ GK_ATOM(prompt, "prompt")
GK_ATOM(propagate, "propagate")
GK_ATOM(properties, "properties")
GK_ATOM(property, "property")
GK_ATOM(pushedFloatsList, "PushedFloats-list")
GK_ATOM(q, "q")
GK_ATOM(query, "query")
GK_ATOM(queryset, "queryset")

View File

@ -564,7 +564,7 @@ nsBlockFrame::GetChildList(nsIAtom* aListName) const
const nsFrameList* list = GetOverflowOutOfFlows();
return list ? *list : nsFrameList::EmptyList();
}
else if (aListName == nsGkAtoms::floatContinuationsList) {
else if (aListName == nsGkAtoms::pushedFloatsList) {
const nsFrameList* list = GetPushedFloats();
return list ? *list : nsFrameList::EmptyList();
}
@ -601,7 +601,7 @@ nsBlockFrame::GetAdditionalChildListName(PRInt32 aIndex) const
case NS_BLOCK_FRAME_ABSOLUTE_LIST_INDEX:
return nsGkAtoms::absoluteList;
case NS_BLOCK_FRAME_PUSHED_FLOATS_LIST_INDEX:
return nsGkAtoms::floatContinuationsList;
return nsGkAtoms::pushedFloatsList;
default:
return nsnull;
}