diff src/gtkpounce.c @ 10246:a66cf83552dc

[gaim-migrate @ 11386] I changed gaim_find_conversation and gaim_find_conversation_with_account The first parameter is now one of GAIM_CONV_IM, GAIM_CONV_CHAT or GAIM_CONV_ANY. Unfortunately, this changes a bajillion files. Please look over this and make sure I use the correct type everywhere. Especially in Novell and MSN, and somewhat in SILC. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 23 Nov 2004 06:14:15 +0000
parents b8b4769d9800
children 89a25444401c
line wrap: on
line diff
--- a/src/gtkpounce.c	Tue Nov 23 05:53:59 2004 +0000
+++ b/src/gtkpounce.c	Tue Nov 23 06:14:15 2004 +0000
@@ -939,7 +939,7 @@
 
 	if (gaim_pounce_action_is_enabled(pounce, "open-window"))
 	{
-		conv = gaim_find_conversation_with_account(pouncee, account);
+		conv = gaim_find_conversation_with_account(GAIM_CONV_IM, pouncee, account);
 
 		if (conv == NULL)
 			conv = gaim_conversation_new(GAIM_CONV_IM, account, pouncee);
@@ -999,7 +999,7 @@
 
 		if (message != NULL)
 		{
-			conv = gaim_find_conversation_with_account(pouncee, account);
+			conv = gaim_find_conversation_with_account(GAIM_CONV_IM, pouncee, account);
 
 			if (conv == NULL)
 				conv = gaim_conversation_new(GAIM_CONV_IM, account, pouncee);