Changeset 13393 for trunk/WebCore/rendering/RenderTable.h
- Timestamp:
- 03/19/06 18:57:59 (3 years ago)
- Files:
-
- 1 modified
-
trunk/WebCore/rendering/RenderTable.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/rendering/RenderTable.h
r13372 r13393 58 58 }; 59 59 60 RenderTable(Node Impl*);60 RenderTable(Node*); 61 61 ~RenderTable(); 62 62 … … 102 102 103 103 #ifndef NDEBUG 104 virtual void dump(QTextStream *stream, QString ind = "") const;104 virtual void dump(QTextStream *stream, DeprecatedString ind = "") const; 105 105 #endif 106 106 struct ColumnStruct { … … 116 116 }; 117 117 118 Array<int> columnPos;119 Array<ColumnStruct> columns;118 DeprecatedArray<int> columnPos; 119 DeprecatedArray<ColumnStruct> columns; 120 120 121 121 void splitColumn(int pos, int firstSpan);