diff src/protocols/silc/buddy.c @ 11338:17142948653e

[gaim-migrate @ 13551] Change the GAIM_CONV_IM and GAIM_CONV_CHAT enums to GAIM_CONV_TYPE_IM and GAIM_CONV_TYPE_CHAT. This touched A LOT of files. Also combined two oscar header files (one of them was small and dorky). committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 25 Aug 2005 02:33:44 +0000
parents 07dc8c6a359f
children 9c7ca8a8c4b8
line wrap: on
line diff
--- a/src/protocols/silc/buddy.c	Thu Aug 25 00:27:12 2005 +0000
+++ b/src/protocols/silc/buddy.c	Thu Aug 25 02:33:44 2005 +0000
@@ -93,12 +93,12 @@
 			silc_ske_free_key_material(key);
 
 			/* Open IM window */
-			convo = gaim_find_conversation_with_account(GAIM_CONV_IM,
+			convo = gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM,
 									client_entry->nickname, sg->account);
 			if (convo)
 				gaim_conv_window_show(gaim_conversation_get_window(convo));
 			else
-				convo = gaim_conversation_new(GAIM_CONV_IM, sg->account,
+				convo = gaim_conversation_new(GAIM_CONV_TYPE_IM, sg->account,
 							      client_entry->nickname);
 			g_snprintf(tmp, sizeof(tmp), "%s [private key]", client_entry->nickname);
 			gaim_conversation_set_title(convo, tmp);