diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-03-21 18:06:24 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-03-21 18:06:24 +0000 |
commit | 6a501d5787eec8bfef3558d14a36754f7be22858 (patch) | |
tree | 6f45996edf5bc5e6368af651ba3a17dd7cb34d6c /src/sound-service.c | |
parent | 6375d3eb602251a2374944817e34b9695ae50b65 (diff) | |
download | ayatana-indicator-sound-6a501d5787eec8bfef3558d14a36754f7be22858.tar.gz ayatana-indicator-sound-6a501d5787eec8bfef3558d14a36754f7be22858.tar.bz2 ayatana-indicator-sound-6a501d5787eec8bfef3558d14a36754f7be22858.zip |
change the mute type on the volume slider to the appropriate type of boolean
Diffstat (limited to 'src/sound-service.c')
-rw-r--r-- | src/sound-service.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sound-service.c b/src/sound-service.c index 7e6426c..c15e94b 100644 --- a/src/sound-service.c +++ b/src/sound-service.c @@ -22,6 +22,8 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #include "sound-service-dbus.h" #include "music-player-bridge.h" +#include <locale.h> + static GMainLoop *mainloop = NULL; /**********************************************************************************************************************/ @@ -39,8 +41,10 @@ service_shutdown (IndicatorService *service, gpointer user_data) { if (mainloop != NULL) { g_debug("Service shutdown !"); +/* close_pulse_activites(); g_main_loop_quit(mainloop); +*/ } return; } |