Add fixme for simplification of next and previous

This commit is contained in:
Thomas Adamcik 2010-02-14 16:14:19 +01:00
parent cdbeaa845b
commit 9db0ac778f

View File

@ -112,6 +112,7 @@ class BasePlaybackController(object):
raise NotImplementedError
def next(self):
# FIXME needs to be simplified by using next_track
playlist = self.backend.current_playlist.playlist
if not self.current_track:
@ -123,6 +124,7 @@ class BasePlaybackController(object):
self.play(next_track)
def previous(self):
# FIXME needs to be simplified by using previous_track
playlist = self.backend.current_playlist.playlist
if not self.current_track: