[gnome-music/wip/jfelder/mpris-cleanup: 3/24] mpris: Distinguish mpris playlists from user playlists



commit 0e19c082ec1147824c400397c96f7b5d8f76b138
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 67de2cc7..1890902d 100644
--- a/gnomemusic/mpris.py
+++ b/gnomemusic/mpris.py
@@ -404,7 +404,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):
@@ -511,7 +511,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,
                                    {
@@ -519,7 +519,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]