diff libpurple/protocols/myspace/zap.c @ 23693:797377cbd5bf

Change the other prpls to use new purple_prpl_{send,got}_attention API.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Sun, 10 Aug 2008 05:11:59 +0000
parents eab7d03edfcb
children fae699fece1f 16734635febf
line wrap: on
line diff
--- a/libpurple/protocols/myspace/zap.c	Sun Aug 10 04:59:17 2008 +0000
+++ b/libpurple/protocols/myspace/zap.c	Sun Aug 10 05:11:59 2008 +0000
@@ -183,7 +183,7 @@
 
 	zap = GPOINTER_TO_INT(zap_num_ptr);
 
-	serv_send_attention(session->gc, buddy->name, zap);
+	purple_prpl_send_attention(session->gc, buddy->name, zap);
 }
 
 /** Return menu, if any, for a buddy list node. */
@@ -241,7 +241,7 @@
 
 	zap = CLAMP(zap, 0, 9);
 
-	serv_got_attention(session->gc, username, zap);
+	purple_prpl_got_attention(session->gc, username, zap);
 
 	g_free(msg_text);
 	g_free(username);