| 31 | } |
| 32 | |
| 33 | bool UIHTMLWidget::isPacking() const { |
| 34 | UILayouter* layouter = const_cast<UIHTMLWidget*>( this )->getLayouter(); |
| 35 | if ( layouter ) |
| 36 | return layouter->isPacking(); |
| 37 | return UILayout::isPacking(); |
| 38 | } |
| 39 | |
| 40 | void UIHTMLWidget::onDisplayChange() { |
| 41 | eeSAFE_DELETE( mLayouter ); |
nothing calls this directly
no test coverage detected