comparison plugins/tcl/tcl_signals.c @ 7118:bf630f7dfdcd

[gaim-migrate @ 7685] Here's a commit that I think will make faceprint happy. GaimWindow -> GaimConvWindow, GaimIm -> GaimConvIm, GaimChat -> GaimConvChat, GaimBlistChat -> GaimChat, and updated the API functions as well. Plugin authors are going to hunt me down and murder me. I can feel it.. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 02 Oct 2003 02:54:07 +0000
parents b0913ab92893
children 1a97d5e88d12
comparison
equal deleted inserted replaced
7117:943085b0ff8b 7118:bf630f7dfdcd
237 case GAIM_BLIST_BUDDY_NODE: 237 case GAIM_BLIST_BUDDY_NODE:
238 g_string_printf(val, "buddy {%s} %lu", ((GaimBuddy *)node)->name, 238 g_string_printf(val, "buddy {%s} %lu", ((GaimBuddy *)node)->name,
239 (unsigned long)((GaimBuddy *)node)->account); 239 (unsigned long)((GaimBuddy *)node)->account);
240 break; 240 break;
241 case GAIM_BLIST_CHAT_NODE: 241 case GAIM_BLIST_CHAT_NODE:
242 g_string_printf(val, "chat {%s} %lu", ((GaimBlistChat *)node)->alias, 242 g_string_printf(val, "chat {%s} %lu", ((GaimChat *)node)->alias,
243 (unsigned long)((GaimBlistChat *)node)->account); 243 (unsigned long)((GaimChat *)node)->account);
244 break; 244 break;
245 case GAIM_BLIST_OTHER_NODE: 245 case GAIM_BLIST_OTHER_NODE:
246 g_string_printf(val, "other"); 246 g_string_printf(val, "other");
247 break; 247 break;
248 } 248 }