diff src/conversation.c @ 8287:ef881489396e

[gaim-migrate @ 9011] Another patch from Scott Lamb to change g_source_remove calls to gaim_timeout_remove. It also implements gaim_timeout_remove. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 18 Feb 2004 07:43:21 +0000
parents f24172f53650
children dde73afb3283
line wrap: on
line diff
--- a/src/conversation.c	Wed Feb 18 07:22:53 2004 +0000
+++ b/src/conversation.c	Wed Feb 18 07:43:21 2004 +0000
@@ -1592,7 +1592,7 @@
 	if (im->typing_timeout == 0)
 		return;
 
-	g_source_remove(im->typing_timeout);
+	gaim_timeout_remove(im->typing_timeout);
 	im->typing_timeout = 0;
 }
 
@@ -1637,7 +1637,7 @@
 	if (im->type_again_timeout == 0)
 		return;
 
-	g_source_remove(im->type_again_timeout);
+	gaim_timeout_remove(im->type_again_timeout);
 	im->type_again_timeout = 0;
 }