1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-15 17:43:53 +01:00

Track::mChannel has an enum type

This commit is contained in:
Paul Licameli
2018-09-20 12:39:05 -04:00
parent 998556205d
commit 35f5555216
4 changed files with 16 additions and 16 deletions

View File

@@ -825,7 +825,7 @@ void WaveTrackMenuTable::OnChannelChange(wxCommandEvent & event)
wxASSERT(id >= OnChannelLeftID && id <= OnChannelMonoID);
WaveTrack *const pTrack = static_cast<WaveTrack*>(mpData->pTrack);
wxASSERT(pTrack);
int channel;
Track::ChannelType channel;
wxString channelmsg;
switch (id) {
default: