Mercurial > pidgin
comparison src/conversation.h @ 4476:62c1e5e656d0
[gaim-migrate @ 4751]
gaim_conversation_new() now takes an aim_user parameter. This should fix
the new placement grouping bugs, as the default "user" (account)
selected was the first account in the list of connections. There may be
side-effects, especially with perl plugins, but I'm not sure. Please report
anything odd that you see as a result of this.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Thu, 30 Jan 2003 18:45:50 +0000 |
parents | d76095396a0e |
children | b30b0a02ada0 |
comparison
equal
deleted
inserted
replaced
4475:1f3241831734 | 4476:62c1e5e656d0 |
---|---|
417 | 417 |
418 /** | 418 /** |
419 * Creates a new conversation of the specified type. | 419 * Creates a new conversation of the specified type. |
420 * | 420 * |
421 * @param type The type of conversation. | 421 * @param type The type of conversation. |
422 * @param user The account opening the conversation window on the gaim | |
423 * user's end. | |
422 * @param name The name of the conversation. | 424 * @param name The name of the conversation. |
423 * | 425 * |
424 * @return The new conversation. | 426 * @return The new conversation. |
425 */ | 427 */ |
426 struct gaim_conversation *gaim_conversation_new(GaimConversationType type, | 428 struct gaim_conversation *gaim_conversation_new(GaimConversationType type, |
429 struct aim_user *user, | |
427 const char *name); | 430 const char *name); |
428 | 431 |
429 /** | 432 /** |
430 * Destroys the specified conversation and removes it from the parent | 433 * Destroys the specified conversation and removes it from the parent |
431 * window. | 434 * window. |