diff src/away.c @ 6640:314111e7b601

[gaim-migrate @ 7165] Changed several calls from gaim_find_conversation() to gaim_find_conversation_with_account(). committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 28 Aug 2003 01:18:50 +0000
parents b808f9734879
children 34f87e4078fc
line wrap: on
line diff
--- a/src/away.c	Wed Aug 27 23:03:03 2003 +0000
+++ b/src/away.c	Thu Aug 28 01:18:50 2003 +0000
@@ -70,7 +70,7 @@
 				if (g_list_index(gaim_accounts_get_all(), qm->account) >= 0)
 					account = qm->account;
 
-				cnv = gaim_find_conversation(name);
+				cnv = gaim_find_conversation_with_account(name, account);
 
 				if (!cnv)
 					cnv = gaim_conversation_new(GAIM_CONV_IM, account, qm->name);
@@ -88,7 +88,7 @@
 			}
 		}
 	}
-	
+
 	g_free(name);
 	/* In GTK 2.2, _store_remove actually returns whether iter is valid or not
 	 * after the remove, but in GTK 2.0 it is a void function. */
@@ -110,7 +110,7 @@
 		if (g_list_index(gaim_accounts_get_all(), qm->account) >= 0)
 			account = qm->account;
 
-		cnv = gaim_find_conversation(qm->name);
+		cnv = gaim_find_conversation_with_account(qm->name, account);
 
 		if (!cnv)
 			cnv = gaim_conversation_new(GAIM_CONV_IM, account, qm->name);