comparison src/prefs.c @ 4695:4bdd9a5fd026

[gaim-migrate @ 5006] This may very well have issues, but it's a slightly better core/ui split, removing global variables and fixing some GTK+ runtime errors and a couple segfaults. It's some progress. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 10 Mar 2003 18:16:29 +0000
parents 283fb289c510
children 4be12ff42986
comparison
equal deleted inserted replaced
4694:8f523dbb970e 4695:4bdd9a5fd026
1964 update_log_convs(); 1964 update_log_convs();
1965 } 1965 }
1966 1966
1967 static void set_blist_option(GtkWidget *w, int option) 1967 static void set_blist_option(GtkWidget *w, int option)
1968 { 1968 {
1969 struct gaim_gtk_buddy_list *gtkblist;
1970
1971 gtkblist = GAIM_GTK_BLIST(gaim_get_blist());
1972
1969 blist_options ^= option; 1973 blist_options ^= option;
1970 1974
1971 if (!gtkblist) 1975 if (!gtkblist)
1972 return; 1976 return;
1973 1977
1974 gaim_gtk_blist_refresh(gaimbuddylist); 1978 gaim_gtk_blist_refresh(gaim_get_blist());
1975 1979
1976 } 1980 }
1977 1981
1978 static void set_convo_option(GtkWidget *w, int option) 1982 static void set_convo_option(GtkWidget *w, int option)
1979 { 1983 {