| 262 | } |
| 263 | |
| 264 | BOOL SizeToImage() |
| 265 | { |
| 266 | ATLASSERT(::IsWindow(m_hWnd) && m_ImageList.m_hImageList != NULL); |
| 267 | int cx = 0; |
| 268 | int cy = 0; |
| 269 | if(!m_ImageList.GetIconSize(cx, cy)) |
| 270 | return FALSE; |
| 271 | return ResizeClient(cx, cy); |
| 272 | } |
| 273 | |
| 274 | // Overrideables |
| 275 | void DoPaint(CDCHandle dc) |
no test coverage detected