diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-02-04 16:48:10 -0800 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-02-04 16:48:10 -0800 |
commit | ce02005121881c0c5cc82f89a0f5641828a05732 (patch) | |
tree | 2b9d54f401127c90023c378632f965dc3bb0b270 /src | |
parent | 29b72e4825517b6183134dec06e392206621a734 (diff) | |
download | ayatana-indicator-sound-ce02005121881c0c5cc82f89a0f5641828a05732.tar.gz ayatana-indicator-sound-ce02005121881c0c5cc82f89a0f5641828a05732.tar.bz2 ayatana-indicator-sound-ce02005121881c0c5cc82f89a0f5641828a05732.zip |
typos fixed
Diffstat (limited to 'src')
-rw-r--r-- | src/pulse-manager.h | 1 | ||||
-rw-r--r-- | src/sound-service.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/pulse-manager.h b/src/pulse-manager.h index 5271628..ddfc721 100644 --- a/src/pulse-manager.h +++ b/src/pulse-manager.h @@ -21,6 +21,7 @@ pa_context* get_context(void); void establish_pulse_activities(SoundServiceDbus *service); void set_sink_volume(gdouble percent); void toggle_global_mute(gboolean mute_value); +void close_pulse_activites(); diff --git a/src/sound-service.c b/src/sound-service.c index 7cf065c..12fb7bf 100644 --- a/src/sound-service.c +++ b/src/sound-service.c @@ -118,8 +118,8 @@ service_shutdown (IndicatorService *service, gpointer user_data) if (mainloop != NULL) { g_debug("Service shutdown - but commented out for right now"); -/* close_pulse_activites()*/ -/* g_main_loop_quit(mainloop);*/ + close_pulse_activites(); + g_main_loop_quit(mainloop); } return; } |