comparison src/gtkconv.c @ 7089:2cd3756a637b

[gaim-migrate @ 7654] Fixed a crash on dragging buddies into conv windows. Closes 814887. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 30 Sep 2003 23:31:35 +0000
parents acd2a66e59ed
children 04f9f7440bc3
comparison
equal deleted inserted replaced
7088:7fd2fd7c6980 7089:2cd3756a637b
3673 else if (GAIM_BLIST_NODE_IS_BUDDY(n)) 3673 else if (GAIM_BLIST_NODE_IS_BUDDY(n))
3674 b = (GaimBuddy*)n; 3674 b = (GaimBuddy*)n;
3675 else 3675 else
3676 return; 3676 return;
3677 3677
3678 c = gaim_conversation_new(GAIM_CONV_IM, 3678 c = gaim_conversation_new(GAIM_CONV_IM, b->account, b->name);
3679 ((GaimBuddy *)n)->account,
3680 ((GaimBuddy *)n)->name);
3681 3679
3682 gaim_window_add_conversation(win, c); 3680 gaim_window_add_conversation(win, c);
3683 } 3681 }
3684 } 3682 }
3685 3683