comparison src/prefs.c @ 4082:4b04ecb3eb97

[gaim-migrate @ 4297] (22:54:38) Robot101: * Make sure prefs are saved before plugins are removed, and not afterwards. (22:54:59) Robot101: * Move do_quit() into aim.c and make sure everything appropriate uses it. (22:55:12) Robot101: * Remove duplicated cancel_login for closing the main window, use do_quit instead. (22:55:49) Robot101: * Remove uncalled code pertaining to closing the about window from when it was called via gaim -v. (22:56:06) LSchiere: what's this in sounds? (22:56:29) Robot101: * Add correct ifdefs to prefs so only compiled-in sound methods are shown. (22:56:34) LSchiere: if you broke my sounds... (22:57:07) Robot101: * Remove unused sound order data, and clarify comments and debug output. (22:57:56) Robot101: * Remove duplicated check which is performed at the start of play_file anyway. (22:58:03) Robot101: that's the lot committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 16 Dec 2002 03:58:54 +0000
parents 3ccbdf8e7f8d
children 7f4f3aa61069
comparison
equal deleted inserted replaced
4081:b35cf600fe30 4082:4b04ecb3eb97
672 OPT_SOUND_ESD | OPT_SOUND_ARTSC | OPT_SOUND_NAS | OPT_SOUND_NORMAL | 672 OPT_SOUND_ESD | OPT_SOUND_ARTSC | OPT_SOUND_NAS | OPT_SOUND_NORMAL |
673 OPT_SOUND_CMD, 673 OPT_SOUND_CMD,
674 "Console beep", OPT_SOUND_BEEP, 674 "Console beep", OPT_SOUND_BEEP,
675 #ifdef ESD_SOUND 675 #ifdef ESD_SOUND
676 "ESD", OPT_SOUND_ESD, 676 "ESD", OPT_SOUND_ESD,
677 #endif /* ESD_SOUND */ 677 #endif
678 #ifdef ARTSC_SOUND
678 "ArtsC", OPT_SOUND_ARTSC, 679 "ArtsC", OPT_SOUND_ARTSC,
680 #endif
681 #ifdef NAS_SOUND
679 "NAS", OPT_SOUND_NAS, 682 "NAS", OPT_SOUND_NAS,
683 #endif
680 "Internal", OPT_SOUND_NORMAL, 684 "Internal", OPT_SOUND_NORMAL,
681 "Command", OPT_SOUND_CMD, NULL); 685 "Command", OPT_SOUND_CMD, NULL);
682 gtk_size_group_add_widget(sg, dd); 686 gtk_size_group_add_widget(sg, dd);
683 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); 687 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0);
684 688