libpurple/protocols/sametime/sametime.c

branch
soc.2013.gobjectification.plugins
changeset 36555
fc17a4351e63
parent 36545
23b59a16c808
child 36583
0582190c9382
equal deleted inserted replaced
36554:74191a8680af 36555:fc17a4351e63
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;

mercurial