| 527 | } |
| 528 | |
| 529 | void TabControl::removeItemAt(size_t _index) |
| 530 | { |
| 531 | MYGUI_ASSERT_RANGE(_index, mItemsInfo.size(), "TabControl::removeItemAt"); |
| 532 | this->_destroyChildWidget(mItemsInfo[_index].item); |
| 533 | } |
| 534 | |
| 535 | void TabControl::removeAllItems() |
| 536 | { |
nothing calls this directly
no test coverage detected