rjc was right. Third time's the charm.

git-svn-id: svn://10.0.0.236/trunk@112376 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
waterson%netscape.com 2002-01-17 04:43:17 +00:00
parent 2337395ba4
commit a764720ab7
2 changed files with 2 additions and 2 deletions

View File

@ -357,7 +357,7 @@ void
nsOutlinerRows::iterator::Push(Subtree *aParent, PRInt32 aChildIndex)
{
if (mTop < kMaxDepth - 1) {
for (PRInt32 i = mTop - 1; i >= 0; --i)
for (PRInt32 i = mTop; i >= 0; --i)
mLink[i + 1] = mLink[i];
mLink[0].mParent = aParent;

View File

@ -357,7 +357,7 @@ void
nsOutlinerRows::iterator::Push(Subtree *aParent, PRInt32 aChildIndex)
{
if (mTop < kMaxDepth - 1) {
for (PRInt32 i = mTop - 1; i >= 0; --i)
for (PRInt32 i = mTop; i >= 0; --i)
mLink[i + 1] = mLink[i];
mLink[0].mParent = aParent;