comparison libpurple/server.c @ 32017:91e8402106c1

Remove old serv attention functions.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Fri, 02 Sep 2011 03:29:23 +0000
parents 43d5face5d9b
children fe20ff3d4e7a
comparison
equal deleted inserted replaced
32016:efe38e6319f2 32017:91e8402106c1
323 } 323 }
324 324
325 return attn; 325 return attn;
326 } 326 }
327 327
328 void
329 serv_send_attention(PurpleConnection *gc, const char *who, guint type_code)
330 {
331 purple_prpl_send_attention(gc, who, type_code);
332 }
333
334 void
335 serv_got_attention(PurpleConnection *gc, const char *who, guint type_code)
336 {
337 purple_prpl_got_attention(gc, who, type_code);
338 }
339
340 328
341 /* 329 /*
342 * Move a buddy from one group to another on server. 330 * Move a buddy from one group to another on server.
343 * 331 *
344 * Note: For now we'll not deal with changing gc's at the same time, but 332 * Note: For now we'll not deal with changing gc's at the same time, but