fix mac bustage from earlier checkin. r=syd.

git-svn-id: svn://10.0.0.236/trunk@89477 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
karnaze%netscape.com
2001-03-13 07:44:46 +00:00
parent e8a5914c5e
commit 4ea2ce59ac
2 changed files with 6 additions and 2 deletions

View File

@@ -5302,7 +5302,9 @@ PresShell::ProcessReflowCommands(PRBool aInterruptible)
ProcessReflowCommand(mReflowCommands, aInterruptible, desiredSize, maxSize, *rcx);
if (aInterruptible) {
LL_I2L(maxTime, gMaxRCProcessingTime);
if (LL_CMP(mAccumulatedReflowTime, >, maxTime))
PRInt64 temp;
LL_I2L(temp, mAccumulatedReflowTime);
if (LL_CMP(temp, >, maxTime))
break;
}
}