fix VC6 build bustage

git-svn-id: svn://10.0.0.236/trunk@206618 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bmlk%gmx.de 2006-08-04 20:32:46 +00:00
parent fe351382fd
commit a37fd56c02

View File

@ -1324,7 +1324,8 @@ nsTableFrame::InsertRowGroups(nsIFrame* aFirstRowGroupFrame,
nsAutoVoidArray rows;
// Loop over the rowgroups and check if some of them are new, if they are
// insert cellmaps in the order that is predefined by OrderRowGroups,
for (PRUint32 rgIndex = 0; rgIndex < numRowGroups; rgIndex++) {
PRUint32 rgIndex;
for (rgIndex = 0; rgIndex < numRowGroups; rgIndex++) {
nsIFrame* kidFrame = aFirstRowGroupFrame;
while (kidFrame) {
nsTableRowGroupFrame* rgFrame = GetRowGroupFrame(kidFrame);
@ -1349,7 +1350,7 @@ nsTableFrame::InsertRowGroups(nsIFrame* aFirstRowGroupFrame,
ResetRowIndices(aFirstRowGroupFrame, aLastRowGroupFrame);
//now that the cellmaps are reordered too insert the rows
for (PRUint32 rgIndex = 0; rgIndex < numRowGroups; rgIndex++) {
for (rgIndex = 0; rgIndex < numRowGroups; rgIndex++) {
nsIFrame* kidFrame = aFirstRowGroupFrame;
while (kidFrame) {
nsTableRowGroupFrame* rgFrame = GetRowGroupFrame(kidFrame);