| 211 | } |
| 212 | |
| 213 | STDMETHODIMP CProgressBarControl_IOleObject::Close(DWORD dwSaveOption) { |
| 214 | m_pParent->DestroyControlWindow(); |
| 215 | return IOleObjectImpl<CProgressBarControl>::Close(dwSaveOption); |
| 216 | } |
| 217 | |
| 218 | STDMETHODIMP CProgressBarControl::CreateControlWindow(HWND hParent, const RECT *pRect) { |
| 219 | m_width = pRect->right - pRect->left; |
nothing calls this directly
no test coverage detected