1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-03 09:09:47 +02:00

fix build

This commit is contained in:
Paul Licameli 2016-04-18 23:10:32 -04:00
parent 66dcabbb96
commit b7d211dfec

View File

@ -318,10 +318,10 @@ void Scrubber::StopScrubbing()
ControlToolBar *const ctb = mProject->GetControlToolBar();
ctb->StopPlaying();
}
return true;
return;
}
else
return false;
return;
}
bool Scrubber::IsScrubbing() const