| 56 | IMPLEMENT_DYNAMIC(CCryptPropertySheet, CPropertySheet) |
| 57 | |
| 58 | CCryptPropertySheet::CCryptPropertySheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage) |
| 59 | :CPropertySheet(nIDCaption, pParentWnd, iSelectPage) |
| 60 | { |
| 61 | m_nMountPageIndex = 0; |
| 62 | m_bHideAfterInit = FALSE; |
| 63 | m_psh.dwFlags |= PSH_NOAPPLYNOW; |
| 64 | m_psh.dwFlags &= ~PSH_HASHELP; |
| 65 | } |
| 66 | |
| 67 | CCryptPropertySheet::CCryptPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage) |
| 68 | :CPropertySheet(pszCaption, pParentWnd, iSelectPage) |
nothing calls this directly
no outgoing calls
no test coverage detected