| 246 | } |
| 247 | |
| 248 | UIWidget* UITreeView::createCell( UIWidget* rowWidget, const ModelIndex& index ) { |
| 249 | UITableCell* widget = index.column() == (Int64)getModel()->treeColumn() |
| 250 | ? UITreeViewCell::New() |
| 251 | : UITableCell::New( mTag + "::cell" ); |
| 252 | return setupCell( widget, rowWidget, index ); |
| 253 | } |
| 254 | |
| 255 | UIWidget* UITreeView::updateCell( const Vector2<Int64>& posIndex, const ModelIndex& index, |
| 256 | const size_t& indentLevel, const Float& yOffset ) { |
nothing calls this directly
no test coverage detected