| 84 | } |
| 85 | |
| 86 | bool Container::HandleAdd( Widget::Ptr child ) { |
| 87 | if( IsChild( child ) ) { |
| 88 | return false; |
| 89 | } |
| 90 | |
| 91 | m_children.push_back( child ); |
| 92 | |
| 93 | child->SetViewport( GetViewport() ); |
| 94 | |
| 95 | return true; |
| 96 | } |
| 97 | |
| 98 | void Container::HandleRemove( Widget::Ptr /*child*/ ) { |
| 99 | } |
nothing calls this directly
no test coverage detected