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
Родитель c4ef49a80d
Коммит 4c67069911
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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)