comparison src/conversation.c @ 6315:9cbf27b02094

[gaim-migrate @ 6814] Removed a gtk pref from the core conversation.c. This is going to change things in some way for users who have the pref set for no tabs. I haven't tested it yet, but they should be using placement functions anyway for conversation placement, whether or not they set tabs. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 27 Jul 2003 10:11:25 +0000
parents 5e5959d7a85e
children 8f94cce8faa5
comparison
equal deleted inserted replaced
6314:2d3c3a0cb7b1 6315:9cbf27b02094
911 911
912 /* 912 /*
913 * Create a window if one does not exist. If it does, use the last 913 * Create a window if one does not exist. If it does, use the last
914 * created window. 914 * created window.
915 */ 915 */
916 if (windows == NULL || 916 if (windows == NULL) {
917 !gaim_prefs_get_bool("/gaim/gtk/conversations/tabs")) {
918
919 GaimWindow *win; 917 GaimWindow *win;
920 918
921 win = gaim_window_new(); 919 win = gaim_window_new();
922 gaim_window_add_conversation(win, conv); 920 gaim_window_add_conversation(win, conv);
923 921