comparison src/gtkprefs.c @ 10492:45ad1d15fab3

[gaim-migrate @ 11782] ChangeLogged slashed prefs. gaim_pref_removed slashed prefs. Added Raise to notify.c. I gaim_pref_renamed raise IM window on events to notify's pref. It's a hack but I'm wondering if anyone has any serious problem with that. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sun, 09 Jan 2005 00:13:34 +0000
parents 8dffdd8861b5
children 0f7452b1f777
comparison
equal deleted inserted replaced
10491:9655389f4b81 10492:45ad1d15fab3
2202 gtk_container_add(GTK_CONTAINER(prefs), vbox); 2202 gtk_container_add(GTK_CONTAINER(prefs), vbox);
2203 gtk_widget_show(vbox); 2203 gtk_widget_show(vbox);
2204 2204
2205 /* The notebook */ 2205 /* The notebook */
2206 prefsnotebook = notebook = gtk_notebook_new (); 2206 prefsnotebook = notebook = gtk_notebook_new ();
2207 gtk_notebook_set_tab_pos(GTK_NOTEBOOK(notebook), GTK_POS_LEFT);
2208 gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), TRUE); 2207 gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), TRUE);
2209 gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); 2208 gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE);
2210 gtk_box_pack_start (GTK_BOX (vbox), notebook, FALSE, FALSE, 0); 2209 gtk_box_pack_start (GTK_BOX (vbox), notebook, FALSE, FALSE, 0);
2211 2210
2212 2211
2313 gaim_prefs_rename("/gaim/gtk/conversations/use_custom_font", 2312 gaim_prefs_rename("/gaim/gtk/conversations/use_custom_font",
2314 "/gaim/gtk/conversations/send_formatting"); 2313 "/gaim/gtk/conversations/send_formatting");
2315 2314
2316 gaim_prefs_rename("/gaim/gtk/debug/timestamps", "/core/debug/timestamps"); 2315 gaim_prefs_rename("/gaim/gtk/debug/timestamps", "/core/debug/timestamps");
2317 gaim_prefs_rename("/gaim/gtk/conversations/ignore_colors", "/gaim/gtk/conversations/ignore_formatting"); 2316 gaim_prefs_rename("/gaim/gtk/conversations/ignore_colors", "/gaim/gtk/conversations/ignore_formatting");
2317 gaim_prefs_rename("/gaim/gtk/conversations/im/raise_on_events", "/plugins/gtk/x11/notify/method/raise");
2318 2318
2319 /* Remove some no-longer-used prefs */ 2319 /* Remove some no-longer-used prefs */
2320 gaim_prefs_remove("/gaim/gtk/blist/auto_expand_contacts"); 2320 gaim_prefs_remove("/gaim/gtk/blist/auto_expand_contacts");
2321 gaim_prefs_remove("/gaim/gtk/blist/button_style"); 2321 gaim_prefs_remove("/gaim/gtk/blist/button_style");
2322 gaim_prefs_remove("/gaim/gtk/blist/grey_idle_buddies"); 2322 gaim_prefs_remove("/gaim/gtk/blist/grey_idle_buddies");
2337 gaim_prefs_remove("/gaim/gtk/conversations/use_custom_fgcolor"); 2337 gaim_prefs_remove("/gaim/gtk/conversations/use_custom_fgcolor");
2338 gaim_prefs_remove("/gaim/gtk/conversations/use_custom_size"); 2338 gaim_prefs_remove("/gaim/gtk/conversations/use_custom_size");
2339 gaim_prefs_remove("/gaim/gtk/conversations/chat/old_tab_complete"); 2339 gaim_prefs_remove("/gaim/gtk/conversations/chat/old_tab_complete");
2340 gaim_prefs_remove("/gaim/gtk/conversations/chat/tab_completion"); 2340 gaim_prefs_remove("/gaim/gtk/conversations/chat/tab_completion");
2341 gaim_prefs_remove("/gaim/gtk/conversations/im/hide_on_send"); 2341 gaim_prefs_remove("/gaim/gtk/conversations/im/hide_on_send");
2342 gaim_prefs_remove("/gaim/gtk/conversations/im/raise_on_events");
2343 gaim_prefs_remove("/gaim/gtk/conversations/chat/color_nicks"); 2342 gaim_prefs_remove("/gaim/gtk/conversations/chat/color_nicks");
2344 gaim_prefs_remove("/gaim/gtk/conversations/chat/raise_on_events"); 2343 gaim_prefs_remove("/gaim/gtk/conversations/chat/raise_on_events");
2344 gaim_prefs_remove("/gaim/gtk/conversations/ignore_fonts");
2345 gaim_prefs_remove("/gaim/gtk/conversations/ignore_font_sizes");
2345 gaim_prefs_remove("/gaim/gtk/logging/individual_logs"); 2346 gaim_prefs_remove("/gaim/gtk/logging/individual_logs");
2346 gaim_prefs_remove("/gaim/gtk/sound/signon"); 2347 gaim_prefs_remove("/gaim/gtk/sound/signon");
2347 gaim_prefs_remove("/gaim/gtk/sound/silent_signon"); 2348 gaim_prefs_remove("/gaim/gtk/sound/silent_signon");
2348 gaim_prefs_remove("/gaim/gtk/conversations/escape_closes"); 2349 gaim_prefs_remove("/gaim/gtk/conversations/escape_closes");
2349 } 2350 }