# HG changeset patch # User Sean Egan # Date 1070428687 0 # Node ID da04da151ec6533f0bd1144f655d7f3d6f8bb5e7 # Parent db3bdae1761e643ebedb8094c33506783696bea9 [gaim-migrate @ 8363] When dragging a buddy into a window, we want to create the new conversation in that window. committer: Tailor Script diff -r db3bdae1761e -r da04da151ec6 src/gtkconv.c --- a/src/gtkconv.c Wed Dec 03 05:12:24 2003 +0000 +++ b/src/gtkconv.c Wed Dec 03 05:18:07 2003 +0000 @@ -3800,7 +3800,7 @@ GaimAccount *account; if (gaim_gtk_parse_x_im_contact(sd->data, FALSE, &account, - &protocol, &username, NULL)) + &protocol, &username, NULL)) { if (account == NULL) { @@ -3810,7 +3810,8 @@ } else { - gaim_conversation_new(GAIM_CONV_IM, account, username); + c = gaim_conversation_new(GAIM_CONV_IM, account, username); + gaim_conv_window_add_conversation(win, c); } }