Fix typo which caused Bidi caret movement regression. Bug 212372, r+sr=roc+moz

This commit is contained in:
smontagu%netscape.com 2003-07-11 21:00:26 +00:00
parent 18686da53d
commit 1825bb79f2
2 changed files with 2 additions and 4 deletions

View File

@ -784,8 +784,7 @@ NS_IMETHODIMP
result = parent;
break;
}
else if ((result = parent->GetParent()) != nsnull) {
result = nsnull;
else if (!(result = parent->GetParent())) {
break;
}
else

View File

@ -784,8 +784,7 @@ NS_IMETHODIMP
result = parent;
break;
}
else if ((result = parent->GetParent()) != nsnull) {
result = nsnull;
else if (!(result = parent->GetParent())) {
break;
}
else