| 487 | } |
| 488 | |
| 489 | STDMETHODIMP CActiveXCtrl::InvalidateRect(LPCRECT pRect, BOOL fErase) |
| 490 | { |
| 491 | DUITRACE(_T("AX: CActiveXCtrl::InvalidateRect")); |
| 492 | if( m_pOwner == NULL ) return E_UNEXPECTED; |
| 493 | if( m_pOwner->m_hwndHost == NULL ) return E_FAIL; |
| 494 | return ::InvalidateRect(m_pOwner->m_hwndHost, pRect, fErase) ? S_OK : E_FAIL; |
| 495 | } |
| 496 | |
| 497 | STDMETHODIMP CActiveXCtrl::InvalidateRgn(HRGN hRGN, BOOL fErase) |
| 498 | { |
nothing calls this directly
no outgoing calls
no test coverage detected