| 107 | } |
| 108 | |
| 109 | void Container::HandleAbsolutePositionChange() { |
| 110 | // Update children's drawable positions. |
| 111 | for( const auto& child : m_children ) { |
| 112 | child->HandleAbsolutePositionChange(); |
| 113 | } |
| 114 | |
| 115 | // Update own drawable position. |
| 116 | Widget::HandleAbsolutePositionChange(); |
| 117 | } |
| 118 | |
| 119 | void Container::HandleGlobalVisibilityChange() { |
| 120 | Widget::HandleGlobalVisibilityChange(); |
nothing calls this directly
no outgoing calls
no test coverage detected