| 478 | #ifndef DISABLE_DYNAMIC_LOADING_LAME |
| 479 | |
| 480 | FindDialog(wxWindow *parent, wxString path, wxString name, |
| 481 | FileNames::FileTypes types) |
| 482 | : wxDialogWrapper(parent, wxID_ANY, |
| 483 | /* i18n-hint: LAME is the name of an MP3 converter and should not be translated*/ |
| 484 | XO("Locate LAME")) |
| 485 | { |
| 486 | SetName(); |
| 487 | ShuttleGui S(this, eIsCreating); |
| 488 | |
| 489 | mPath = path; |
| 490 | mName = name; |
| 491 | mTypes = std::move( types ); |
| 492 | |
| 493 | mLibPath.Assign(mPath, mName); |
| 494 | |
| 495 | PopulateOrExchange(S); |
| 496 | } |
| 497 | |
| 498 | void PopulateOrExchange(ShuttleGui & S) |
| 499 | { |
nothing calls this directly
no test coverage detected