| 338 | } |
| 339 | |
| 340 | SIZE CPaintManagerUI::GetClientSize() const |
| 341 | { |
| 342 | RECT rcClient = { 0 }; |
| 343 | ::GetClientRect(m_hWndPaint, &rcClient); |
| 344 | return CSize(rcClient.right - rcClient.left, rcClient.bottom - rcClient.top); |
| 345 | } |
| 346 | |
| 347 | SIZE CPaintManagerUI::GetInitSize() |
| 348 | { |
nothing calls this directly
no outgoing calls
no test coverage detected