1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-30 15:18:42 +02:00

fix build on mac

This commit is contained in:
mchinen 2011-01-29 22:08:22 +00:00
parent 47ac55b29c
commit 84c6013a17
2 changed files with 2 additions and 2 deletions

View File

@ -829,7 +829,7 @@ void DeviceToolBar::ShowChannelsDialog()
ShowComboDialog(mInputChannels, wxString(_("Select Input Channels")));
}
void DeviceToolBar::ShowComboDialog(wxChoice *combo, wxString &title)
void DeviceToolBar::ShowComboDialog(wxChoice *combo, const wxString &title)
{
if (!combo || combo->GetCount() == 0) {
wxMessageBox(_("Device information is not available."));

View File

@ -71,7 +71,7 @@ class DeviceToolBar:public ToolBar {
void RepositionCombos();
void RegenerateTooltips();
void ShowComboDialog(wxChoice *combo, wxString &title);
void ShowComboDialog(wxChoice *combo, const wxString &title);
wxBitmap *mPlayBitmap;
wxBitmap *mRecordBitmap;