| 3637 } |
3637 } |
| 3638 |
3638 |
| 3639 |
3639 |
| 3640 static GList *mw_protocol_chat_info(PurpleConnection *gc) { |
3640 static GList *mw_protocol_chat_info(PurpleConnection *gc) { |
| 3641 GList *l = NULL; |
3641 GList *l = NULL; |
| 3642 struct proto_chat_entry *pce; |
3642 PurpleProtocolChatEntry *pce; |
| 3643 |
3643 |
| 3644 pce = g_new0(struct proto_chat_entry, 1); |
3644 pce = g_new0(PurpleProtocolChatEntry, 1); |
| 3645 pce->label = _("Topic:"); |
3645 pce->label = _("Topic:"); |
| 3646 pce->identifier = CHAT_KEY_TOPIC; |
3646 pce->identifier = CHAT_KEY_TOPIC; |
| 3647 l = g_list_append(l, pce); |
3647 l = g_list_append(l, pce); |
| 3648 |
3648 |
| 3649 return l; |
3649 return l; |