| 108 | public: |
| 109 | |
| 110 | FindFFmpegDialog(wxWindow *parent, const wxString &path, const wxString &name) |
| 111 | : wxDialogWrapper(parent, wxID_ANY, XO("Locate FFmpeg")) |
| 112 | , mName(name) |
| 113 | , mFullPath(path, {}) |
| 114 | { |
| 115 | SetName(); |
| 116 | |
| 117 | ShuttleGui S(this, eIsCreating); |
| 118 | PopulateOrExchange(S); |
| 119 | } |
| 120 | |
| 121 | void PopulateOrExchange(ShuttleGui & S) |
| 122 | { |
nothing calls this directly
no test coverage detected