| 1001 | } |
| 1002 | |
| 1003 | void CActiveXUI::SetDelayCreate(bool bDelayCreate) |
| 1004 | { |
| 1005 | if( m_bDelayCreate == bDelayCreate ) return; |
| 1006 | if( bDelayCreate == false ) { |
| 1007 | if( m_bCreated == false && m_clsid != IID_NULL ) DoCreateControl(); |
| 1008 | } |
| 1009 | m_bDelayCreate = bDelayCreate; |
| 1010 | } |
| 1011 | |
| 1012 | bool CActiveXUI::CreateControl(LPCTSTR pstrCLSID) |
| 1013 | { |
nothing calls this directly
no outgoing calls
no test coverage detected