| 337 | //------------------------------------------------------------------------------ |
| 338 | |
| 339 | void CreatorTree::build() |
| 340 | { |
| 341 | mMaxWidth = 0; |
| 342 | mNodeList.clear(); |
| 343 | buildNode(mRoot, 0); |
| 344 | mCellSize.set( mMaxWidth + 1, 11 ); |
| 345 | setSize(Point2I(1, mNodeList.size())); |
| 346 | } |
| 347 | |
| 348 | //------------------------------------------------------------------------------ |
| 349 | bool CreatorTree::onWake() |
no test coverage detected