[gnome-music/wip/jfelder/mpris-cleanup: 8/29] 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: 8/29] mpris: Distinguish mpris playlists from user playlists
- Date: Mon, 8 Apr 2019 16:28:26 +0000 (UTC)
commit 9931043f03a068c8b466a840986a46a8ede256ad
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 dbe0c660..5f81cddd 100644
--- a/gnomemusic/mpris.py
+++ b/gnomemusic/mpris.py
@@ -411,7 +411,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):
@@ -516,7 +516,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,
{
@@ -524,7 +524,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]