mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-25 08:38:39 +02:00
Remove a compiler warning in Menus.cpp
Quick fix of compiler warning caused by some of my code.
This commit is contained in:
parent
bfec6f0aa2
commit
6c48be71ff
@ -7677,9 +7677,9 @@ int AudacityProject::FindClipBoundaries(double time, bool next, std::vector<Foun
|
|||||||
results.push_back(result);
|
results.push_back(result);
|
||||||
}
|
}
|
||||||
if (stereoAndDiff) {
|
if (stereoAndDiff) {
|
||||||
auto waveTrack2 = static_cast<const WaveTrack*>(track->GetLink());
|
waveTrack = static_cast<const WaveTrack*>(track->GetLink());
|
||||||
auto result = next ? FindNextClipBoundary(waveTrack2, time) :
|
result = next ? FindNextClipBoundary(waveTrack, time) :
|
||||||
FindPrevClipBoundary(waveTrack2, time);
|
FindPrevClipBoundary(waveTrack, time);
|
||||||
if (result.nFound > 0) {
|
if (result.nFound > 0) {
|
||||||
result.trackNum = trackNum;
|
result.trackNum = trackNum;
|
||||||
result.channel = stereoAndDiff;
|
result.channel = stereoAndDiff;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user