# HG changeset patch # User Eric Warmenhoven # Date 962344502 0 # Node ID 7b49c67e561c15b759c8647eb64507b5e4093b3a # Parent e1c09b8c8bb1ab5cfbda61e59d4be1aaef9dcc8a [gaim-migrate @ 461] sounds go through gnome should actually go thorugh gnome committer: Tailor Script diff -r e1c09b8c8bb1 -r 7b49c67e561c src/sound.c --- a/src/sound.c Fri Jun 30 05:00:12 2000 +0000 +++ b/src/sound.c Fri Jun 30 05:55:02 2000 +0000 @@ -266,7 +266,11 @@ extern int logins_not_muted; +#ifdef USE_APPLET +void applet_play_sound(int sound) +#else void play_sound(int sound) +#endif { switch(sound) { @@ -300,11 +304,11 @@ #ifdef USE_APPLET #include -void applet_play_sound(int sound) +void play_sound(int sound) { if (!(sound_options & OPT_SOUND_THROUGH_GNOME)) { - play_sound(sound); + applet_play_sound(sound); return; }