diff src/sound.c @ 9944:e4a27c9aec4c

[gaim-migrate @ 10838] with much rejoicing, and massive thanks to the efforts of Christian, and all who have helped him, I present to you the incomplete status rewrite! committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 03 Sep 2004 21:35:52 +0000
parents 4a15962c344a
children bdec08a8fc5b
line wrap: on
line diff
--- a/src/sound.c	Fri Sep 03 21:21:25 2004 +0000
+++ b/src/sound.c	Fri Sep 03 21:35:52 2004 +0000
@@ -59,8 +59,11 @@
 
 void gaim_sound_play_file(const char *filename)
 {
+	/* FIXME */
+#if 0
 	if(awaymessage && !gaim_prefs_get_bool("/core/sound/while_away"))
 		return;
+#endif
 
 	if(sound_ui_ops && sound_ui_ops->play_file)
 		sound_ui_ops->play_file(filename);
@@ -68,8 +71,11 @@
 
 void gaim_sound_play_event(GaimSoundEventID event)
 {
+	/* FIXME */
+#if 0
 	if(awaymessage && !gaim_prefs_get_bool("/core/sound/while_away"))
 		return;
+#endif
 
 	if(sound_ui_ops && sound_ui_ops->play_event)
 		sound_ui_ops->play_event(event);