MCPcopy Create free account
hub / github.com/audacity/audacity / DoMessageBox

Function DoMessageBox

src/effects/EqualizationCurvesDialog.cpp:127–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

125namespace EQUtils
126{
127int 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
137void EqualizationCurvesDialog::OnUp(wxCommandEvent & WXUNUSED(event))

Callers 11

ImportPresetsMethod · 0.70
OnUpMethod · 0.70
OnRenameMethod · 0.70
OnDeleteMethod · 0.70
OnExportMethod · 0.70
OnLoadMethod · 0.50
OnSaveMethod · 0.50
OnTimeMethod · 0.50
InitMethod · 0.50
ProcessMethod · 0.50

Calls 2

AudacityMessageBoxFunction · 0.85
emptyMethod · 0.45

Tested by

no test coverage detected