aboutsummaryrefslogtreecommitdiff
path: root/tests/test-indicator-sound-dbus-server.c
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2010-08-18 12:04:59 +0100
committerConor Curran <conor.curran@canonical.com>2010-08-18 12:04:59 +0100
commit88c0ff52c479c7ec7a70448fe17946ee5ff68d3d (patch)
tree5aa8c8001b5ea2f7417dd2bf962347e527581425 /tests/test-indicator-sound-dbus-server.c
parent44d47d0c4d334ba3cd2b8d9bd34893ba8c3dedf9 (diff)
parent4897f3ce524e6d91ecd0c70142556be0f29367b7 (diff)
downloadayatana-indicator-sound-88c0ff52c479c7ec7a70448fe17946ee5ff68d3d.tar.gz
ayatana-indicator-sound-88c0ff52c479c7ec7a70448fe17946ee5ff68d3d.tar.bz2
ayatana-indicator-sound-88c0ff52c479c7ec7a70448fe17946ee5ff68d3d.zip
merge the mpris2 operational branch
Diffstat (limited to 'tests/test-indicator-sound-dbus-server.c')
-rw-r--r--tests/test-indicator-sound-dbus-server.c24
1 files changed, 10 insertions, 14 deletions
diff --git a/tests/test-indicator-sound-dbus-server.c b/tests/test-indicator-sound-dbus-server.c
index 6912dc4..b1e3d9c 100644
--- a/tests/test-indicator-sound-dbus-server.c
+++ b/tests/test-indicator-sound-dbus-server.c
@@ -35,33 +35,29 @@ gboolean
kill_func (gpointer userdata)
{
g_main_loop_quit(mainloop);
- // TODO free the dbus interface !!
return FALSE;
}
gint
main (gint argc, gchar * argv[])
{
- g_type_init();
-
- //g_debug("DBus ID: %s", dbus_connection_get_server_id(dbus_g_connection_get_connection(dbus_g_bus_get(DBUS_BUS_SESSION, NULL))));
+ g_type_init();
- dbus_interface = g_object_new(SOUND_SERVICE_DBUS_TYPE, NULL);
+ dbus_interface = g_object_new(SOUND_SERVICE_DBUS_TYPE, NULL);
- // Set the mute value
- sound_service_dbus_update_sink_mute(dbus_interface, TEST_MUTE_VALUE);
- sound_service_dbus_update_sink_volume(dbus_interface, TEST_VOLUME_VALUE);
- sound_service_dbus_update_sink_availability(dbus_interface, TEST_AVAILABLE_VALUE);
+ // Set the mute value
+ sound_service_dbus_update_sink_mute(dbus_interface, TEST_MUTE_VALUE);
+ sound_service_dbus_update_sink_availability(dbus_interface, TEST_AVAILABLE_VALUE);
- g_timeout_add_seconds(4, kill_func, NULL);
+ g_timeout_add_seconds(4, kill_func, NULL);
- // Run the loop
- mainloop = g_main_loop_new(NULL, FALSE);
- g_main_loop_run(mainloop);
+ // Run the loop
+ mainloop = g_main_loop_new(NULL, FALSE);
+ g_main_loop_run(mainloop);
g_debug("Quiting");
- return 0;
+ return 0;
}