Fixed reversed order of parameters for call to nsPrevNextBidiLevels::SetData(). bug=336617 r+sr=roc

This commit is contained in:
uriber%gmail.com 2006-05-06 12:56:45 +00:00
parent c66b163cd4
commit 28bd16f046

View File

@ -1885,8 +1885,8 @@ nsFrameSelection::GetPrevNextBidiLevels(nsIContent *aNode,
// set aNextFrame to the current frame
// set aNextLevel to the embedding level of the current frame
levels.SetData(nsnull, currentFrame,
NS_GET_EMBEDDING_LEVEL(currentFrame),
NS_GET_BASE_LEVEL(currentFrame));
NS_GET_BASE_LEVEL(currentFrame),
NS_GET_EMBEDDING_LEVEL(currentFrame));
return levels;
}
} //if (!aJumpLines)