mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 17:30:17 +01:00
Fix compiling when USE_MIDI not is defined
Compilation broke in TrackPanel ined277ecand in TrackpanelAx ina96c719c.
This commit is contained in:
@@ -353,12 +353,14 @@ wxAccStatus TrackPanelAx::GetName( int childId, wxString* name )
|
||||
this is a Time track.*/
|
||||
name->Append( wxT(" ") + wxString(_("Time Track")));
|
||||
}
|
||||
#ifdef USE_MIDI
|
||||
else if (t->GetKind() == Track::Note)
|
||||
{
|
||||
/* i18n-hint: This is for screen reader software and indicates that
|
||||
this is a Note track.*/
|
||||
name->Append( wxT(" ") + wxString(_("Note Track")));
|
||||
}
|
||||
#endif
|
||||
|
||||
// LLL: Remove these during "refactor"
|
||||
if( t->GetMute() )
|
||||
|
||||
Reference in New Issue
Block a user