diff src/protocols/oscar/oscar.c @ 3768:f53370197bb9

[gaim-migrate @ 3907] Tri-state typing notification (typing, typed, and no longer typing) by Nathan D. Walp committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sun, 20 Oct 2002 19:38:36 +0000
parents b32474e522fa
children 765769211688
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c	Sun Oct 20 19:08:21 2002 +0000
+++ b/src/protocols/oscar/oscar.c	Sun Oct 20 19:38:36 2002 +0000
@@ -2384,11 +2384,11 @@
 		} break;
 
 		case 0x0001: { /* Paused typing */
-			serv_got_typing_stopped(gc, sn);
+			serv_got_typing(gc, sn, 0, TYPED);
 		} break;
 
 		case 0x0002: { /* Typing */
-			serv_got_typing(gc, sn, 0);
+			serv_got_typing(gc, sn, 0, TYPING);
 		} break;
 
 		default: {
@@ -4323,7 +4323,7 @@
 	if (typing) {
 		/* I had to leave this. It's just too funny. It reminds me of my sister. */
 		debug_printf("ohmigod! %s has started typing (DirectIM). He's going to send you a message! *squeal*\n", sn);
-		serv_got_typing(gc,sn,0);
+		serv_got_typing(gc,sn,0, TYPING);
 	} else
 		serv_got_typing_stopped(gc,sn);
 	return 1;