/////////////////////////////////////////////////////////////// Method: OnSize Class: CCamView Purose: adjust on windows resize Input: reference to size event Output: nothing ///////////////////////////////////////////////////////////////
| 220 | // Output: nothing |
| 221 | //////////////////////////////////////////////////////////////////// |
| 222 | void CCamView::OnSize( wxSizeEvent& even ) |
| 223 | { |
| 224 | int nWidth = even.GetSize().GetWidth(); |
| 225 | int nHeight = even.GetSize().GetHeight(); |
| 226 | |
| 227 | m_nWidth = nWidth; |
| 228 | m_nHeight = nHeight; |
| 229 | |
| 230 | } |
nothing calls this directly
no outgoing calls
no test coverage detected