| 68 | } |
| 69 | |
| 70 | void Window::HandleSizeChange() { |
| 71 | if( !GetChild() ) { |
| 72 | return; |
| 73 | } |
| 74 | |
| 75 | GetChild()->SetAllocation( GetClientRect() ); |
| 76 | } |
| 77 | |
| 78 | void Window::SetStyle( char style ) { |
| 79 | m_style = style; |
nothing calls this directly
no test coverage detected