MCPcopy Create free account
hub / github.com/audacity/audacity / IsGoodNextSyncLockTrack

Function IsGoodNextSyncLockTrack

libraries/lib-track-selection/SyncLock.cpp:68–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66}
67
68bool IsGoodNextSyncLockTrack(const Track &t, bool inSeparatorSection)
69{
70 const bool isSeparator = IsSeparatorTrack(t);
71 if (inSeparatorSection)
72 return isSeparator;
73 else if (isSeparator)
74 return true;
75 else
76 return IsSyncLockableNonSeparatorTrack(t);
77}
78}
79
80bool SyncLock::IsSyncLockSelected(const Track &track)

Callers 1

FindSyncLockGroupFunction · 0.85

Calls 2

IsSeparatorTrackFunction · 0.85

Tested by

no test coverage detected