[gnome-music/wip/mschraal/core: 165/208] grltrackersource: Rename core_selection to coreselection



commit e8e920256be1809274b11f65364f74bc2151eb46
Author: Marinus Schraal <mschraal gnome org>
Date:   Sun Jun 30 01:31:30 2019 +0200

    grltrackersource: Rename core_selection to coreselection

 gnomemusic/grilowrappers/grltrackersource.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/gnomemusic/grilowrappers/grltrackersource.py b/gnomemusic/grilowrappers/grltrackersource.py
index c3db013c..60696c2e 100644
--- a/gnomemusic/grilowrappers/grltrackersource.py
+++ b/gnomemusic/grilowrappers/grltrackersource.py
@@ -33,11 +33,11 @@ class GrlTrackerSource(GObject.GObject):
 
     def __init__(
             self, source, model, albums_model, artists_model, coremodel,
-            core_selection, grilo):
+            coreselection, grilo):
         super().__init__()
 
         self._coremodel = coremodel
-        self._core_selection = core_selection
+        self._coreselection = coreselection
         self._grilo = grilo
         self._source = source
         self._model = model
@@ -207,7 +207,7 @@ class GrlTrackerSource(GObject.GObject):
             print("ALREADY ADDED")
             return
 
-        song = CoreSong(media, self._core_selection, self._grilo)
+        song = CoreSong(media, self._coreselection, self._grilo)
         self._model.append(song)
         self._hash[media.get_id()] = song
 
@@ -254,7 +254,7 @@ class GrlTrackerSource(GObject.GObject):
         if not media:
             return
 
-        song = CoreSong(media, self._core_selection, self._grilo)
+        song = CoreSong(media, self._coreselection, self._grilo)
         self._model.append(song)
         self._hash[media.get_id()] = song
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]