1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-08 04:32:00 +01:00

Sweep unnecessary wxString copies: widgets

This commit is contained in:
Paul Licameli
2016-02-22 21:16:12 -05:00
parent 4961006f1b
commit 2efa24bc10
13 changed files with 46 additions and 38 deletions

View File

@@ -156,9 +156,9 @@ void MultiDialog::OnShowLog(wxCommandEvent & WXUNUSED(event))
}
int ShowMultiDialog(wxString message,
wxString title,
const wxChar **buttons, wxString boxMsg, bool log)
int ShowMultiDialog(const wxString &message,
const wxString &title,
const wxChar **buttons, const wxString &boxMsg, bool log)
{
wxWindow * pParent = wxGetApp().GetTopWindow();