| 236 | } |
| 237 | |
| 238 | LRESULT WindowImplBase::OnSysCommand(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) |
| 239 | { |
| 240 | if (wParam == SC_CLOSE) |
| 241 | { |
| 242 | bHandled = TRUE; |
| 243 | SendMessage(WM_CLOSE); |
| 244 | return 0; |
| 245 | } |
| 246 | #if defined(WIN32) && !defined(UNDER_CE) |
| 247 | BOOL bZoomed = ::IsZoomed(*this); |
| 248 | LRESULT lRes = CWindowWnd::HandleMessage(uMsg, wParam, lParam); |
| 249 | if( ::IsZoomed(*this) != bZoomed ) |
| 250 | { |
| 251 | } |
| 252 | #else |
| 253 | LRESULT lRes = CWindowWnd::HandleMessage(uMsg, wParam, lParam); |
| 254 | #endif |
| 255 | return lRes; |
| 256 | } |
| 257 | |
| 258 | LRESULT WindowImplBase::OnCreate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) |
| 259 | { |
nothing calls this directly
no outgoing calls
no test coverage detected