Backed out changeset 88a279b64473

This commit is contained in:
Chris Jones 2010-08-19 19:03:44 -05:00
parent 6a47a87fe5
commit 5bf56d9e0d

View File

@ -1347,15 +1347,12 @@ nsBaseWidget::debug_DumpPaintEvent(FILE * aFileOut,
if (!debug_GetCachedBoolPref("nglayout.debug.paint_dumping"))
return;
nsIntRect rect = aPaintEvent->region.GetBounds();
fprintf(aFileOut,
"%4d PAINT widget=%p name=%-12s id=%-8p bounds-rect=%3d,%-3d %3d,%-3d",
"%4d PAINT widget=%p name=%-12s id=%-8p rect=",
_GetPrintCount(),
(void *) aWidget,
aWidgetName.get(),
(void *) aWindowID,
rect.x, rect.y, rect.width, rect.height
);
(void *) aWindowID);
fprintf(aFileOut,"\n");
}