diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-08-10 13:41:08 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-08-10 13:41:08 +0100 |
commit | 023090260c73fad2f22c8937fad70215d56319d1 (patch) | |
tree | 0b7e27a0c06c038c8b19633e281d065751f18074 /src/sound-service-dbus.c | |
parent | 8594ebfd7953488650107625622cba9f343c051f (diff) | |
download | ayatana-indicator-sound-023090260c73fad2f22c8937fad70215d56319d1.tar.gz ayatana-indicator-sound-023090260c73fad2f22c8937fad70215d56319d1.tar.bz2 ayatana-indicator-sound-023090260c73fad2f22c8937fad70215d56319d1.zip |
track specific ordering correct, player specific under way
Diffstat (limited to 'src/sound-service-dbus.c')
-rw-r--r-- | src/sound-service-dbus.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/sound-service-dbus.c b/src/sound-service-dbus.c index bad90ca..9950302 100644 --- a/src/sound-service-dbus.c +++ b/src/sound-service-dbus.c @@ -326,7 +326,7 @@ bus_method_call (GDBusConnection * connection, gchar* player_object_path; gchar* player_id; g_variant_get (params, "(os)", &player_object_path, &player_id); - g_debug ("object path = %s and id = %s", player_object_path, player_id); + //g_debug ("object path = %s and id = %s", player_object_path, player_id); g_signal_emit (service, signals[TRACK_SPECIFIC_ITEM], 0, @@ -340,7 +340,9 @@ bus_method_call (GDBusConnection * connection, gchar* player_object_path; gchar* player_id; g_variant_get (params, "(os)", &player_object_path, &player_id); - //g_debug ("object path = %s and id = %s", player_object_path, player_id); + g_debug ("PLayer specific item - object path = %s and id = %s", + player_object_path, + player_id); g_signal_emit (service, signals[PLAYER_SPECIFIC_ITEM], 0, |