queue/PlaylistControl: use PlaylistError::NotPlaying()

This commit is contained in:
Max Kellermann 2016-09-05 20:37:24 +02:00
parent a71efacd1e
commit aca081557a

View File

@ -121,11 +121,8 @@ playlist::PlayId(PlayerControl &pc, int id, Error &error)
bool bool
playlist::PlayNext(PlayerControl &pc, Error &error) playlist::PlayNext(PlayerControl &pc, Error &error)
{ {
if (!playing) { if (!playing)
error.Set(playlist_domain, int(PlaylistResult::NOT_PLAYING), throw PlaylistError::NotPlaying();
"Not playing");
return false;
}
assert(!queue.IsEmpty()); assert(!queue.IsEmpty());
assert(queue.IsValidOrder(current)); assert(queue.IsValidOrder(current));
@ -173,11 +170,8 @@ playlist::PlayNext(PlayerControl &pc, Error &error)
bool bool
playlist::PlayPrevious(PlayerControl &pc, Error &error) playlist::PlayPrevious(PlayerControl &pc, Error &error)
{ {
if (!playing) { if (!playing)
error.Set(playlist_domain, int(PlaylistResult::NOT_PLAYING), throw PlaylistError::NotPlaying();
"Not playing");
return false;
}
assert(!queue.IsEmpty()); assert(!queue.IsEmpty());