fix mac bustage from earlier checkin. r=syd.

This commit is contained in:
karnaze%netscape.com 2001-03-13 07:44:46 +00:00
Родитель 2c08614bbd
Коммит 4ae32df7c6
2 изменённых файлов: 6 добавлений и 2 удалений

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

@ -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;
}
}

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

@ -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;
}
}