| 219 |
219 |
| 220 PurpleConversation * |
220 PurpleConversation * |
| 221 jabber_find_unnormalized_conv(const char *name, PurpleAccount *account) |
221 jabber_find_unnormalized_conv(const char *name, PurpleAccount *account) |
| 222 { |
222 { |
| 223 PurpleConversation *c = NULL; |
223 PurpleConversation *c = NULL; |
| 224 GList *cnv; |
224 const GList *cnv; |
| 225 |
225 |
| 226 g_return_val_if_fail(name != NULL, NULL); |
226 g_return_val_if_fail(name != NULL, NULL); |
| 227 |
227 |
| 228 for(cnv = purple_get_conversations(); cnv; cnv = cnv->next) { |
228 for(cnv = purple_get_conversations(); cnv; cnv = cnv->next) { |
| 229 c = (PurpleConversation*)cnv->data; |
229 c = (PurpleConversation*)cnv->data; |