| 91 | |
| 92 | #if defined(WIN32) && !defined(UNDER_CE) |
| 93 | LRESULT WindowImplBase::OnNcActivate(UINT /*uMsg*/, WPARAM wParam, LPARAM /*lParam*/, BOOL& bHandled) |
| 94 | { |
| 95 | if( ::IsIconic(*this) ) bHandled = FALSE; |
| 96 | return (wParam == 0) ? TRUE : FALSE; |
| 97 | } |
| 98 | |
| 99 | LRESULT WindowImplBase::OnNcCalcSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) |
| 100 | { |
nothing calls this directly
no outgoing calls
no test coverage detected