Changeset 13149 for trunk/WebCore/rendering/RenderTable.h
- Timestamp:
- 03/05/06 18:53:41 (3 years ago)
- Files:
-
- 1 modified
-
trunk/WebCore/rendering/RenderTable.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/rendering/RenderTable.h
r12462 r13149 78 78 int borderBottom() const; 79 79 80 Rules getRules() const { return rules; }80 Rules getRules() const { return static_cast<Rules>(rules); } 81 81 82 82 const Color& bgColor() const { return style()->backgroundColor(); } … … 174 174 CollapsedBorderValue* m_currentBorder; 175 175 176 Frame frame : 4;177 Rules rules : 4;176 unsigned frame : 4; // Frame 177 unsigned rules : 4; // Rules 178 178 179 bool has_col_elems : 1;180 unsigned padding : 22;181 uint needSectionRecalc: 1;179 bool has_col_elems : 1; 180 unsigned padding : 22; 181 bool needSectionRecalc : 1; 182 182 183 183 short hspacing;