Changeset 18762 for trunk/WebCore/rendering/RenderBlock.h
- Timestamp:
- 01/11/07 04:21:22 (2 years ago)
- Files:
-
- 1 modified
-
trunk/WebCore/rendering/RenderBlock.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/rendering/RenderBlock.h
r18758 r18762 281 281 void clearTruncation(); 282 282 283 virtual bool hasColumns() const { return m_ columnCount > 1; }283 virtual bool hasColumns() const { return m_desiredColumnCount > 1; } 284 284 void adjustRectForColumns(IntRect&) const; 285 285 private: … … 296 296 int columnGap() const; 297 297 void calcColumnWidth(); 298 void layoutColumns();298 int layoutColumns(int endOfContent = -1); 299 299 300 300 protected: … … 462 462 463 463 // Column information. 464 int m_ columnWidth;465 unsigned m_ columnCount;464 int m_desiredColumnWidth; 465 unsigned m_desiredColumnCount; 466 466 Vector<IntRect>* m_columnRects; 467 467 };