comparison plugins/win32/winprefs/winprefs.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 bb0d7b719af2
children 5938f6b386fa
comparison
equal deleted inserted replaced
11337:1462b64f8fc9 11338:17142948653e
283 wgaim_conv_im_blink (GaimAccount *account, char *sender, char *message, int flags) 283 wgaim_conv_im_blink (GaimAccount *account, char *sender, char *message, int flags)
284 { 284 {
285 if (gaim_prefs_get_bool(PREF_IM_BLINK) == FALSE) 285 if (gaim_prefs_get_bool(PREF_IM_BLINK) == FALSE)
286 return; 286 return;
287 287
288 GaimConversation *conv = gaim_find_conversation_with_account(GAIM_CONV_IM, sender, account); 288 GaimConversation *conv = gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM, sender, account);
289 if (conv == NULL) { 289 if (conv == NULL) {
290 gaim_debug_info("winprefs", "gar!\n"); 290 gaim_debug_info("winprefs", "gar!\n");
291 return; 291 return;
292 } 292 }
293 GaimConvWindow *win = gaim_conversation_get_window(conv); 293 GaimConvWindow *win = gaim_conversation_get_window(conv);