| 636 | } |
| 637 | |
| 638 | void HyperTextBox::removeItemAt(size_t _index) |
| 639 | { |
| 640 | MYGUI_ASSERT_RANGE(_index, mStackPanel->getChildCount(), "HyperTextBox::removeItemAt"); |
| 641 | WidgetManager::getInstancePtr()->destroyWidget(mStackPanel->getChildAt(_index)); |
| 642 | } |
| 643 | |
| 644 | void HyperTextBox::updateBreakHeight() |
| 645 | { |
nothing calls this directly
no test coverage detected