fixed the flashing mode in debug builds

This commit is contained in:
pierre%netscape.com 2000-02-09 10:05:25 +00:00
Родитель aff94a67c5
Коммит 9d43a2fef1
1 изменённых файлов: 3 добавлений и 6 удалений

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

@ -982,14 +982,11 @@ nsWindow::Flash(nsPaintEvent &aEvent)
if (debug_WantPaintFlashing() && aEvent.rect ) {
::SetRect ( &flashRect, aEvent.rect->x, aEvent.rect->y, aEvent.rect->x + aEvent.rect->width,
aEvent.rect->y + aEvent.rect->height );
StPortSetter portSetter(mWindowPtr);
unsigned long endTicks;
::InvertRect ( &flashRect );
for (int x = 0; x < 1000000; x++) ;
::Delay(10, &endTicks);
::InvertRect ( &flashRect );
for (int x = 0; x < 1000000; x++) ;
::InvertRect ( &flashRect );
for (int x = 0; x < 1000000; x++) ;
::InvertRect ( &flashRect );
for (int x = 0; x < 1000000; x++) ;
}
#endif
}