[gnome-music/wip/jfelder/mpris-cleanup: 4/25] mpris: Distinguish mpris playlists from user playlists
- From: Jean Felder <jfelder src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-music/wip/jfelder/mpris-cleanup: 4/25] mpris: Distinguish mpris playlists from user playlists
- Date: Fri, 5 Apr 2019 22:17:31 +0000 (UTC)
commit 4467ead391a92c3cfe4d329067df4bc10bfeb97e
Author: Jean Felder <jfelder src gnome org>
Date: Mon Mar 18 15:44:18 2019 +0100
mpris: Distinguish mpris playlists from user playlists
Rename _get_playlists method to _query_playlists to avoid the confusion
between the playlists created by the user and the functions associated
with the mpris Playlists interface.
gnomemusic/mpris.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gnomemusic/mpris.py b/gnomemusic/mpris.py
index f669321d..133207de 100644
--- a/gnomemusic/mpris.py
+++ b/gnomemusic/mpris.py
@@ -403,7 +403,7 @@ class MPRIS(DBusInterface):
return None
@log
- def _get_playlists(self, callback):
+ def _query_playlists(self, callback):
playlists = []
def populate_callback(source, param, item, remaining=0, data=None):
@@ -510,7 +510,7 @@ class MPRIS(DBusInterface):
@log
def _reload_playlists(self):
- def get_playlists_callback(playlists):
+ def query_playlists_callback(playlists):
self.playlists = playlists
self.PropertiesChanged(MPRIS.MEDIA_PLAYER2_PLAYLISTS_IFACE,
{
@@ -518,7 +518,7 @@ class MPRIS(DBusInterface):
},
[])
- self._get_playlists(get_playlists_callback)
+ self._query_playlists(query_playlists_callback)
@log
def _on_playlists_count_changed(self, playlists, item):
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]