diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-02-02 16:00:20 -0600 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-02-02 16:00:20 -0600 |
commit | aa063e3e1c57346a6af86cc0a6cee81a846b1154 (patch) | |
tree | 6236a6b6fa1096879b8a2ad420752432813eb8f3 /src/sound-service-dbus.c | |
parent | 81ab9100b3d3e767e32ff4c960abf20c089e0457 (diff) | |
parent | 2b6453d1a988eb4a82df18401b3ba9b3867a2f40 (diff) | |
download | ayatana-indicator-sound-aa063e3e1c57346a6af86cc0a6cee81a846b1154.tar.gz ayatana-indicator-sound-aa063e3e1c57346a6af86cc0a6cee81a846b1154.tar.bz2 ayatana-indicator-sound-aa063e3e1c57346a6af86cc0a6cee81a846b1154.zip |
player title is now set via the identity property on the root mpris interface
Diffstat (limited to 'src/sound-service-dbus.c')
-rw-r--r-- | src/sound-service-dbus.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sound-service-dbus.c b/src/sound-service-dbus.c index 7f5afdc..637bee4 100644 --- a/src/sound-service-dbus.c +++ b/src/sound-service-dbus.c @@ -452,7 +452,7 @@ static gboolean sound_service_dbus_blacklist_player (SoundServiceDbus* self, g_debug ("we have this already blacklisted, no need to do anything"); g_variant_builder_clear (&builder); g_object_unref (our_settings); - g_object_unref (the_black_list); + g_variant_unref (the_black_list); return result; } } @@ -475,7 +475,7 @@ static gboolean sound_service_dbus_blacklist_player (SoundServiceDbus* self, g_debug ("it was not blacklisted ?, no need to do anything"); g_variant_builder_clear (&builder); g_object_unref (our_settings); - g_object_unref (the_black_list); + g_variant_unref (the_black_list); return result; } @@ -497,7 +497,7 @@ static gboolean sound_service_dbus_blacklist_player (SoundServiceDbus* self, value); g_object_unref (our_settings); - g_object_unref (the_black_list); + g_variant_unref (the_black_list); return result; } |