Mercurial > pidgin
comparison src/conversation.c @ 4818:1c371e4244d6
[gaim-migrate @ 5142]
brought to you by the letter T and the number 0, I give you tabless
conversation windows.
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Tue, 18 Mar 2003 03:23:00 +0000 |
parents | 677d3cb193a1 |
children | 9567b13d0e98 |
comparison
equal
deleted
inserted
replaced
4817:b4ca2cc6bed9 | 4818:1c371e4244d6 |
---|---|
902 | 902 |
903 /* | 903 /* |
904 * Create a window if one does not exist. If it does, use the last | 904 * Create a window if one does not exist. If it does, use the last |
905 * created window. | 905 * created window. |
906 */ | 906 */ |
907 if (windows == NULL) { | 907 if (windows == NULL || |
908 (type == GAIM_CONV_IM && !(im_options & OPT_IM_ONE_WINDOW)) || | |
909 (type == GAIM_CONV_CHAT && !(chat_options & OPT_CHAT_ONE_WINDOW))) { | |
908 struct gaim_window *win; | 910 struct gaim_window *win; |
909 | 911 |
910 win = gaim_window_new(); | 912 win = gaim_window_new(); |
911 gaim_window_add_conversation(win, conv); | 913 gaim_window_add_conversation(win, conv); |
912 | 914 |