Use unsigned value with 1-bit field width, per sicking's advice. No bug.

This commit is contained in:
dbaron%dbaron.org 2006-12-16 02:11:38 +00:00
Родитель bbe11ba915
Коммит f10ce086e7
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -749,7 +749,7 @@ protected:
PRUint32 mNeedToCollapse:1; // rows, cols that have visibility:collapse need to be collapsed PRUint32 mNeedToCollapse:1; // rows, cols that have visibility:collapse need to be collapsed
PRUint32 mHasZeroColSpans:1; PRUint32 mHasZeroColSpans:1;
PRUint32 mNeedColSpanExpansion:1; PRUint32 mNeedColSpanExpansion:1;
PRBool mResizedColumns:1; // have we resized columns since last reflow? PRUint32 mResizedColumns:1; // have we resized columns since last reflow?
} mBits; } mBits;
nsTableCellMap* mCellMap; // maintains the relationships between rows, cols, and cells nsTableCellMap* mCellMap; // maintains the relationships between rows, cols, and cells