| 1727 | } |
| 1728 | |
| 1729 | void PlaybackManager::checkPlayPosition(int maxStepSize) |
| 1730 | { |
| 1731 | if (isPlaySong() && playingPos_.step >= maxStepSize) { |
| 1732 | playingPos_.step = maxStepSize - 1; |
| 1733 | findNextStep(); |
| 1734 | } |
| 1735 | } |
| 1736 | |
| 1737 | void PlaybackManager::setChannelRetrieving(bool enabled) |
| 1738 | { |
no outgoing calls
no test coverage detected