| 66 | } |
| 67 | |
| 68 | bool 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 | |
| 80 | bool SyncLock::IsSyncLockSelected(const Track &track) |
no test coverage detected