From 28bd16f04682b5e61188cdfb357055ca2bb236f7 Mon Sep 17 00:00:00 2001 From: "uriber%gmail.com" Date: Sat, 6 May 2006 12:56:45 +0000 Subject: [PATCH] Fixed reversed order of parameters for call to nsPrevNextBidiLevels::SetData(). bug=336617 r+sr=roc --- layout/generic/nsSelection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layout/generic/nsSelection.cpp b/layout/generic/nsSelection.cpp index 61053b029e68..993fa61479d3 100644 --- a/layout/generic/nsSelection.cpp +++ b/layout/generic/nsSelection.cpp @@ -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)