comparison src/prefs.c @ 4429:bf770f11132b

[gaim-migrate @ 4704] (15:41:59) Robot101: the hunk that got left out in the cold. its a good thing when things compile committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 26 Jan 2003 20:41:49 +0000
parents b5669740e34c
children 801830dec409
comparison
equal deleted inserted replaced
4428:b5669740e34c 4429:bf770f11132b
954 gaim_button(_("_Sounds while away"), &sound_options, OPT_SOUND_WHEN_AWAY, vbox); 954 gaim_button(_("_Sounds while away"), &sound_options, OPT_SOUND_WHEN_AWAY, vbox);
955 955
956 #ifndef _WIN32 956 #ifndef _WIN32
957 vbox = make_frame (ret, _("Sound Method")); 957 vbox = make_frame (ret, _("Sound Method"));
958 dd = gaim_dropdown(vbox, _("_Method"), &sound_options, OPT_SOUND_BEEP | 958 dd = gaim_dropdown(vbox, _("_Method"), &sound_options, OPT_SOUND_BEEP |
959 OPT_SOUND_ESD | OPT_SOUND_ARTSC | OPT_SOUND_NAS | OPT_SOUND_NORMAL | 959 OPT_SOUND_NORMAL |
960 OPT_SOUND_CMD, 960 OPT_SOUND_CMD,
961 _("Console beep"), OPT_SOUND_BEEP, 961 _("Console beep"), OPT_SOUND_BEEP,
962 #ifdef ESD_SOUND 962 #ifdef USE_AO
963 "ESD", OPT_SOUND_ESD, 963 _("Automatic"), OPT_SOUND_NORMAL,
964 #endif 964 #endif
965 #ifdef ARTSC_SOUND
966 "ArtsC", OPT_SOUND_ARTSC,
967 #endif
968 #ifdef NAS_SOUND
969 "NAS", OPT_SOUND_NAS,
970 #endif
971 _("Internal"), OPT_SOUND_NORMAL,
972 _("Command"), OPT_SOUND_CMD, NULL); 965 _("Command"), OPT_SOUND_CMD, NULL);
973 gtk_size_group_add_widget(sg, dd); 966 gtk_size_group_add_widget(sg, dd);
974 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); 967 gtk_misc_set_alignment(GTK_MISC(dd), 0, 0);
975 968
976 hbox = gtk_hbox_new(FALSE, 5); 969 hbox = gtk_hbox_new(FALSE, 5);