From 537bb1a8794caac083341bfbcecd26ac771afd7c Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Wed, 22 Jun 2011 00:18:52 +0300 Subject: [PATCH] Change some TODO/XXX to NOTE as they only apply given some future initiatives/changes --- mopidy/frontends/mpris.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mopidy/frontends/mpris.py b/mopidy/frontends/mpris.py index e8cabf5d..0e6f0e03 100644 --- a/mopidy/frontends/mpris.py +++ b/mopidy/frontends/mpris.py @@ -127,7 +127,7 @@ class MprisObject(dbus.service.Object): return { 'CanQuit': (True, None), 'CanRaise': (False, None), - # TODO Add track list support + # NOTE Change if adding optional track list support 'HasTrackList': (False, None), 'Identity': ('Mopidy', None), 'DesktopEntry': ('mopidy', None), @@ -484,17 +484,17 @@ class MprisObject(dbus.service.Object): def get_CanPause(self): if not self.get_CanControl(): return False - # XXX Should be changed to vary based on capabilities of the current + # NOTE Should be changed to vary based on capabilities of the current # track if Mopidy starts supporting non-seekable media, like streams. return True def get_CanSeek(self): if not self.get_CanControl(): return False - # XXX Should be changed to vary based on capabilities of the current + # NOTE Should be changed to vary based on capabilities of the current # track if Mopidy starts supporting non-seekable media, like streams. return True def get_CanControl(self): - # TODO This could be a setting for the end user to change. + # NOTE This could be a setting for the end user to change. return True