| 349 | } |
| 350 | |
| 351 | bool GuiStackControl::resize(const Point2I &newPosition, const Point2I &newExtent) |
| 352 | { |
| 353 | if( !Parent::resize( newPosition, newExtent ) ) |
| 354 | return false; |
| 355 | |
| 356 | updatePanes(); |
| 357 | |
| 358 | // CodeReview This logic should be updated to correctly return true/false |
| 359 | // based on whether it sized it's children. [7/1/2007 justind] |
| 360 | return true; |
| 361 | } |
| 362 | |
| 363 | void GuiStackControl::addObject(SimObject *obj) |
| 364 | { |
no test coverage detected