comparison libpurple/conversation.c @ 18823:e1062ac14080

Correct an inaccurate comment.
author Will Thompson <will.thompson@collabora.co.uk>
date Mon, 06 Aug 2007 22:07:48 +0000
parents f4d05584369e
children deb9471d7142 3ad938b84843 a28127ed9797
comparison
equal deleted inserted replaced
18821:0765cf9331f6 18823:e1062ac14080
1104 g_return_if_fail(im != NULL); 1104 g_return_if_fail(im != NULL);
1105 g_return_if_fail(message != NULL); 1105 g_return_if_fail(message != NULL);
1106 1106
1107 c = purple_conv_im_get_conversation(im); 1107 c = purple_conv_im_get_conversation(im);
1108 1108
1109 /* Raise the window, if specified in prefs. */ 1109 /* Pass this on to either the ops structure or the default write func. */
1110 if (c->ui_ops != NULL && c->ui_ops->write_im != NULL) 1110 if (c->ui_ops != NULL && c->ui_ops->write_im != NULL)
1111 c->ui_ops->write_im(c, who, message, flags, mtime); 1111 c->ui_ops->write_im(c, who, message, flags, mtime);
1112 else 1112 else
1113 purple_conversation_write(c, who, message, flags, mtime); 1113 purple_conversation_write(c, who, message, flags, mtime);
1114 } 1114 }