| 125 | namespace EQUtils |
| 126 | { |
| 127 | int DoMessageBox( |
| 128 | const TranslatableString& name, const TranslatableString& msg, |
| 129 | const TranslatableString& titleStr, long style = wxOK | wxCENTRE) |
| 130 | { |
| 131 | // Compare with EffectUIServices::DoMessageBox |
| 132 | auto title = titleStr.empty() ? name : XO("%s: %s").Format(name, titleStr); |
| 133 | return AudacityMessageBox(msg, title, style, nullptr); |
| 134 | } |
| 135 | } // namespace |
| 136 | |
| 137 | void EqualizationCurvesDialog::OnUp(wxCommandEvent & WXUNUSED(event)) |