| 642 | } |
| 643 | |
| 644 | void HyperTextBox::updateBreakHeight() |
| 645 | { |
| 646 | mBreakHeight = 0; |
| 647 | |
| 648 | IFont* font = FontManager::getInstancePtr()->getByName(getDefaultFont()); |
| 649 | if (font != nullptr) |
| 650 | mBreakHeight = font->getDefaultHeight(); |
| 651 | } |
| 652 | |
| 653 | } // namespace MyGUI |
nothing calls this directly
no test coverage detected