1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-11 15:16:27 +01:00

Fix Windows build

This commit is contained in:
Paul Licameli
2017-05-18 19:01:46 -04:00
parent a6310d770d
commit 01f853f174
2 changed files with 11 additions and 1 deletions

View File

@@ -162,6 +162,16 @@ struct ClipMoveState {
double hSlideAmount {};
TrackClipArray capturedClipArray {};
wxInt64 snapLeft { -1 }, snapRight { -1 };
void clear()
{
capturedClip = nullptr;
capturedClipIsSelection = false;
trackExclusions.clear();
hSlideAmount = 0;
capturedClipArray.clear();
snapLeft = snapRight = -1;
}
};
class AUDACITY_DLL_API TrackPanel final : public OverlayPanel {