| 122 | } |
| 123 | |
| 124 | void CFolderDialog::EnableOK(BOOL bEnable) |
| 125 | { |
| 126 | // Documentation is incorrect! It is the lParam, not the wParam, that |
| 127 | // controls the enable! |
| 128 | //::SendMessage(m_hDialogBox, BFFM_ENABLEOK, (bEnable ? 1 : 0), 0); |
| 129 | ::SendMessage(m_hDialogBox, BFFM_ENABLEOK, 0, (bEnable ? 1 : 0)); |
| 130 | } |
| 131 | |
| 132 | void CFolderDialog::SetSelection(LPCTSTR pszSelection) |
| 133 | { |
nothing calls this directly
no outgoing calls
no test coverage detected