libpurple/protocols/mxit/markup.c

branch
soc.2013.gobjectification.plugins
changeset 37101
8ba9a23354ff
parent 37016
48f85579cc4c
parent 35499
c4c5e0a670b1
child 37121
fba6e5400a2a
--- a/libpurple/protocols/mxit/markup.c	Mon Feb 10 00:16:53 2014 +0530
+++ b/libpurple/protocols/mxit/markup.c	Mon Feb 10 01:09:47 2014 +0530
@@ -333,7 +333,7 @@
 			}
 
 			/* push message to pidgin */
-			serv_got_im( mx->session->con, mx->from, msg->str, mx->flags, mx->timestamp );
+			purple_serv_got_im( mx->session->con, mx->from, msg->str, mx->flags, mx->timestamp );
 			g_string_free( msg, TRUE );
 			msg = NULL;
 
@@ -357,7 +357,7 @@
 		ch[pos] = '\n';
 
 		/* push message to pidgin */
-		serv_got_im( mx->session->con, mx->from, msg->str, mx->flags, mx->timestamp );
+		purple_serv_got_im( mx->session->con, mx->from, msg->str, mx->flags, mx->timestamp );
 		g_string_free( msg, TRUE );
 		msg = NULL;
 	}
@@ -430,7 +430,7 @@
 	}
 	else {
 		/* this is a multimx message */
-		serv_got_chat_in( mx->session->con, mx->chatid, mx->from, mx->flags, mx->msg->str, mx->timestamp);
+		purple_serv_got_chat_in( mx->session->con, mx->chatid, mx->from, mx->flags, mx->msg->str, mx->timestamp);
 	}
 
 	/* freeup resource */

mercurial