MCPcopy Create free account
hub / github.com/cinience/RedisStudio / InvalidateRect

Method InvalidateRect

DuiLib/Control/UIActiveX.cpp:489–495  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

487}
488
489STDMETHODIMP 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
497STDMETHODIMP CActiveXCtrl::InvalidateRgn(HRGN hRGN, BOOL fErase)
498{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected