comparison libpurple/server.c @ 32697:fe20ff3d4e7a

Hide struct _PurpleConvIm.
author andrew.victor@mxit.com
date Sat, 01 Oct 2011 11:35:15 +0000
parents 91e8402106c1
children 2ec94166be43
comparison
equal deleted inserted replaced
32696:1877fd446f8d 32697:fe20ff3d4e7a
723 conv = purple_find_conversation_with_account(PURPLE_CONV_TYPE_IM, name, gc->account); 723 conv = purple_find_conversation_with_account(PURPLE_CONV_TYPE_IM, name, gc->account);
724 if (conv != NULL) 724 if (conv != NULL)
725 { 725 {
726 im = PURPLE_CONV_IM(conv); 726 im = PURPLE_CONV_IM(conv);
727 727
728 if (im->typing_state == PURPLE_NOT_TYPING) 728 if (purple_conv_im_get_typing_state(im) == PURPLE_NOT_TYPING)
729 return; 729 return;
730 730
731 purple_conv_im_stop_typing_timeout(im); 731 purple_conv_im_stop_typing_timeout(im);
732 purple_conv_im_set_typing_state(im, PURPLE_NOT_TYPING); 732 purple_conv_im_set_typing_state(im, PURPLE_NOT_TYPING);
733 } 733 }