comparison src/prpl.c @ 6695:0c5637b5462e

[gaim-migrate @ 7221] This is contact support. Really. It has a few bugs left in it, like sorting not working, and stuff like that, but it's pretty solid for the most part. I'm not in the mood to do a whole lot of typing, so just use and enjoy. committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Tue, 02 Sep 2003 03:41:10 +0000
parents 314111e7b601
children 636b5215552e
comparison
equal deleted inserted replaced
6694:2d2f04c5c7d2 6695:0c5637b5462e
121 { 121 {
122 GaimConversation *conv; 122 GaimConversation *conv;
123 struct icon_data tmp; 123 struct icon_data tmp;
124 GList *l; 124 GList *l;
125 struct icon_data *id; 125 struct icon_data *id;
126 struct buddy *b; 126 GaimBuddy *b;
127 /* i'm going to vent here a little bit about normalize(). normalize() 127 /* i'm going to vent here a little bit about normalize(). normalize()
128 * uses a static buffer, so when we call functions that use normalize() from 128 * uses a static buffer, so when we call functions that use normalize() from
129 * functions that use normalize(), whose parameters are the result of running 129 * functions that use normalize(), whose parameters are the result of running
130 * normalize(), bad things happen. To prevent some of this, we're going 130 * normalize(), bad things happen. To prevent some of this, we're going
131 * to make a copy of what we get from normalize(), so we know nothing else 131 * to make a copy of what we get from normalize(), so we know nothing else
277 const char *who, const char *alias, const char *msg) 277 const char *who, const char *alias, const char *msg)
278 { 278 {
279 GaimAccount *account; 279 GaimAccount *account;
280 char buf[BUF_LONG]; 280 char buf[BUF_LONG];
281 struct got_add *ga; 281 struct got_add *ga;
282 struct buddy *b; 282 GaimBuddy *b;
283 283
284 account = gaim_connection_get_account(gc); 284 account = gaim_connection_get_account(gc);
285 b = gaim_find_buddy(gc->account, who); 285 b = gaim_find_buddy(gc->account, who);
286 286
287 ga = g_new0(struct got_add, 1); 287 ga = g_new0(struct got_add, 1);