Changeset 14372 for trunk/WebCore/rendering/RenderTable.h
- Timestamp:
- 05/14/06 21:42:09 (3 years ago)
- Files:
-
- 1 modified
-
trunk/WebCore/rendering/RenderTable.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/rendering/RenderTable.h
r14274 r14372 75 75 76 76 bool collapseBorders() const { return style()->borderCollapse(); } 77 int borderLeft() const ;78 int borderRight() const ;77 int borderLeft() const { return m_borderLeft; } 78 int borderRight() const { return m_borderRight; } 79 79 int borderTop() const; 80 80 int borderBottom() const; … … 87 87 void setCellPadding(unsigned p) { padding = p; } 88 88 89 int outerBorderTop() const; 90 int outerBorderBottom() const; 91 int outerBorderLeft() const; 92 int outerBorderRight() const; 93 94 int calcBorderLeft() const; 95 int calcBorderRight() const; 96 void recalcHorizontalBorders(); 97 89 98 // overrides 90 99 virtual int overflowHeight(bool includeInterior = true) const { return height(); } 91 virtual int overflowWidth(bool includeInterior = true) const { return width(); }92 100 virtual void addChild(RenderObject* child, RenderObject* beforeChild = 0); 93 101 virtual void paint(PaintInfo&, int tx, int ty); … … 146 154 } 147 155 148 RenderTableCol* colElement(int col) ;156 RenderTableCol* colElement(int col) const; 149 157 150 158 void setNeedSectionRecalc() { needSectionRecalc = true; } … … 189 197 short hspacing; 190 198 short vspacing; 199 int m_borderRight; 200 int m_borderLeft; 191 201 }; 192 202