comparison src/blist.c @ 5676:dae79aefac8d

[gaim-migrate @ 6094] I've been meaning to do this for a LONG time. The conversation API now follows the naming convention of the rest of the new APIs. I'll get some g_return_*_if_fail() checks in there soon. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 02 Jun 2003 21:51:06 +0000
parents 5946be17f9ec
children 666b04f93c55
comparison
equal deleted inserted replaced
5675:17e345ffeddb 5676:dae79aefac8d
244 } 244 }
245 245
246 void gaim_blist_alias_buddy (struct buddy *buddy, const char *alias) 246 void gaim_blist_alias_buddy (struct buddy *buddy, const char *alias)
247 { 247 {
248 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops; 248 struct gaim_blist_ui_ops *ops = gaimbuddylist->ui_ops;
249 struct gaim_conversation *conv; 249 GaimConversation *conv;
250 250
251 g_free(buddy->alias); 251 g_free(buddy->alias);
252 252
253 if(alias && strlen(alias)) 253 if(alias && strlen(alias))
254 buddy->alias = g_strdup(alias); 254 buddy->alias = g_strdup(alias);