[gnome-music/wip/jfelder/mpris-cleanup: 35/41] mpris: Make app attribute internal
- From: Jean Felder <jfelder src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-music/wip/jfelder/mpris-cleanup: 35/41] mpris: Make app attribute internal
- Date: Thu, 30 May 2019 17:27:19 +0000 (UTC)
commit 3df57cf2f9a2c398488b36cf18728c72d3be4fb3
Author: Jean Felder <jfelder src gnome org>
Date: Thu Mar 14 10:35:13 2019 +0100
mpris: Make app attribute internal
gnomemusic/mpris.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/gnomemusic/mpris.py b/gnomemusic/mpris.py
index 8a269d07..2227c9a6 100644
--- a/gnomemusic/mpris.py
+++ b/gnomemusic/mpris.py
@@ -276,7 +276,7 @@ class MPRIS(DBusInterface):
path = '/org/mpris/MediaPlayer2'
super().__init__(name, path)
- self.app = app
+ self._app = app
self.player = app.props.player
self.player.connect(
'song-changed', self._on_current_song_changed)
@@ -612,10 +612,10 @@ class MPRIS(DBusInterface):
self._reload_playlists()
def _raise(self):
- self.app.do_activate()
+ self._app.do_activate()
def _quit(self):
- self.app.quit()
+ self._app.quit()
def _next(self):
self.player.next()
@@ -724,7 +724,7 @@ class MPRIS(DBusInterface):
def _get_all(self, interface_name):
if interface_name == MPRIS.MEDIA_PLAYER2_IFACE:
- application_id = self.app.props.application_id
+ application_id = self._app.props.application_id
return {
'CanQuit': GLib.Variant('b', True),
'Fullscreen': GLib.Variant('b', False),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]