| 284 | } |
| 285 | |
| 286 | void CPageAdvanced::InitCloneDropdownMenu(HWND hWnd) |
| 287 | { |
| 288 | // Set clone menu choice (ok even if it's not a clone) |
| 289 | const int nCurrentChoice = GetCloneMenuItem(); |
| 290 | m_PropertySheetHelper.FillComboBox(hWnd, IDC_CLONETYPE, m_CloneChoices, nCurrentChoice); |
| 291 | |
| 292 | const bool bIsClone = IsClone( m_PropertySheetHelper.GetConfigNew().m_Apple2Type ); |
| 293 | EnableWindow(GetDlgItem(hWnd, IDC_CLONETYPE), bIsClone ? TRUE : FALSE); |
| 294 | } |
| 295 | |
| 296 | void CPageAdvanced::InitGameIOConnectorDropdownMenu(HWND hWnd) |
| 297 | { |
nothing calls this directly
no test coverage detected