comparison src/gtkprefs.c @ 5535:933739f789f9

[gaim-migrate @ 5935] ding, dong, OPT_MISC_DEBUG is dead. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Mon, 26 May 2003 16:11:46 +0000
parents 2c4c975620f0
children de09863bd4b5
comparison
equal deleted inserted replaced
5534:0aa4d089125c 5535:933739f789f9
1991 1991
1992 static void set_misc_option(GtkWidget *w, int option) 1992 static void set_misc_option(GtkWidget *w, int option)
1993 { 1993 {
1994 misc_options ^= option; 1994 misc_options ^= option;
1995 1995
1996 if (option == OPT_MISC_DEBUG) { 1996 if(option == OPT_MISC_USE_SERVER_ALIAS) {
1997 if ((misc_options & OPT_MISC_DEBUG))
1998 gaim_gtk_debug_window_show();
1999 else
2000 gaim_gtk_debug_window_hide();
2001 }
2002 else if(option == OPT_MISC_USE_SERVER_ALIAS) {
2003 /* XXX blist reset the aliases here */ 1997 /* XXX blist reset the aliases here */
2004 gaim_conversation_foreach(gaim_conversation_autoset_title); 1998 gaim_conversation_foreach(gaim_conversation_autoset_title);
2005 } 1999 }
2006 } 2000 }
2007 2001