From: Sean E. <sea...@us...> - 2002-08-18 17:01:16
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv8648/src Modified Files: prefs.c Log Message: I know I already committed this. Index: prefs.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/prefs.c,v retrieving revision 1.235 retrieving revision 1.236 diff -u -d -r1.235 -r1.236 --- prefs.c 18 Aug 2002 00:02:01 -0000 1.235 +++ prefs.c 18 Aug 2002 17:01:13 -0000 1.236 @@ -596,7 +596,7 @@ typingbutton = gaim_button(_("Notify buddies that you are typing to them"), &misc_options_new, OPT_MISC_STEALTH_TYPING, vbox); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(typingbutton), !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(typingbutton))); - misc_options ^= OPT_MISC_STEALTH_TYPING; + misc_options_new ^= OPT_MISC_STEALTH_TYPING; gtk_widget_show(vbox); @@ -626,7 +626,7 @@ gaim_labeled_spin_button(vbox, _("New window width:"), &buddy_chat_size_new.width, 25, 9999); gaim_labeled_spin_button(vbox, _("New window height:"), &buddy_chat_size_new.height, 25, 9999); gaim_labeled_spin_button(vbox, _("Entry widget height:"), &buddy_chat_size_new.entry_height, 25, 9999); - gaim_button(_("Raise windows on events"), &chat_options, OPT_CHAT_POPUP, vbox); + gaim_button(_("Raise windows on events"), &chat_options_new, OPT_CHAT_POPUP, vbox); gtk_widget_show (vbox); |