| 86 | } |
| 87 | |
| 88 | void UIHTMLTable::updateLayout() { |
| 89 | UILayouter* layouter = const_cast<UIHTMLTable*>( this )->getLayouter(); |
| 90 | if ( layouter ) |
| 91 | getLayouter()->updateLayout(); |
| 92 | else |
| 93 | UIHTMLWidget::updateLayout(); |
| 94 | |
| 95 | mDirtyLayout = false; |
| 96 | } |
| 97 | |
| 98 | Uint32 UIHTMLTable::onMessage( const NodeMessage* Msg ) { |
| 99 | switch ( Msg->getMsg() ) { |
nothing calls this directly
no test coverage detected