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

fixed indentation warnings in src/Menus.cpp

This commit is contained in:
andheh 2018-02-15 13:23:08 +01:00 committed by James Crook
parent dd41df237c
commit 9bfbc907a9

View File

@ -2286,7 +2286,7 @@ CommandFlag AudacityProject::GetUpdateFlags(bool checkActive)
if (!EffectManager::Get().RealtimeIsActive())
flags |= IsRealtimeNotActiveFlag;
if (!mIsCapturing)
if (!mIsCapturing)
flags |= CaptureNotBusyFlag;
ControlToolBar *bar = GetControlToolBar();
@ -7272,11 +7272,11 @@ void AudacityProject::HandleMixAndRender(bool toNewTrack)
if (t->GetLinked() || !t->GetLink())
selectedCount++;
if (!toNewTrack) {
t = iter.RemoveCurrent();
} else {
t = iter.Next();
};
if (!toNewTrack) {
t = iter.RemoveCurrent();
} else {
t = iter.Next();
};
}
else
t = iter.Next();