| 30 | } |
| 31 | |
| 32 | void Widget::render(RectI const& region) { |
| 33 | if (!m_visible) |
| 34 | return; |
| 35 | |
| 36 | if (!setupDrawRegion(region)) |
| 37 | return; |
| 38 | |
| 39 | renderImpl(); |
| 40 | drawChildren(); |
| 41 | } |
| 42 | |
| 43 | void Widget::renderImpl() {} |
| 44 |
no outgoing calls
no test coverage detected