diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-10-29 17:16:45 -0700 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2013-10-29 17:16:45 -0700 |
commit | 781447c5a0d82c625ddd8e6fb2ab01eae720d330 (patch) | |
tree | ec83b15f5491bf3a53209fb2a0cb99ab4d6b0926 /src/media-player.vala | |
parent | b9660509ac4306924e8d9cccb1728a8a459475a2 (diff) | |
download | ayatana-indicator-sound-781447c5a0d82c625ddd8e6fb2ab01eae720d330.tar.gz ayatana-indicator-sound-781447c5a0d82c625ddd8e6fb2ab01eae720d330.tar.bz2 ayatana-indicator-sound-781447c5a0d82c625ddd8e6fb2ab01eae720d330.zip |
Rename MediaPlayer.launch() ot activate()
Diffstat (limited to 'src/media-player.vala')
-rw-r--r-- | src/media-player.vala | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/media-player.vala b/src/media-player.vala index 7326708..7e0d2a7 100644 --- a/src/media-player.vala +++ b/src/media-player.vala @@ -118,17 +118,17 @@ public class MediaPlayer: Object { } /** - * Launch the associated media player. + * Activate the associated media player. * * Note: this will _not_ call attach(), because it doesn't know on which dbus-name the player will appear. * Use attach() to attach this object to a running instance of the player. */ - public void launch () { + public void activate () { try { this.appinfo.launch (null, null); } catch (Error e) { - warning ("unable to launch %s: %s", appinfo.get_name (), e.message); + warning ("unable to activate %s: %s", appinfo.get_name (), e.message); } if (this.proxy == null) @@ -144,7 +144,7 @@ public class MediaPlayer: Object { } else if (this.state != "Launching") { this.play_when_attached = true; - this.launch (); + this.activate (); } } |