diff options
author | Antoine Pietri <antoine.pietri@epita.fr> | 2015-01-25 21:45:16 +0100 |
---|---|---|
committer | Antoine Pietri <antoine.pietri@epita.fr> | 2015-01-25 21:45:16 +0100 |
commit | 36ee8c61168ef4c73d5637d1c7a426df6ed15735 (patch) | |
tree | 539ae077e4ea12087f681617a7a9d2f071fe784d | |
parent | e26aa728e6840678ea018ab979867730f4c7fb68 (diff) |
purple: add topic and name_hint to groupchats
-rw-r--r-- | protocols/purple/purple.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/purple/purple.c b/protocols/purple/purple.c index 97d2a4ae..da3134dd 100644 --- a/protocols/purple/purple.c +++ b/protocols/purple/purple.c @@ -831,6 +831,9 @@ void prplcb_conv_new( PurpleConversation *conv ) struct groupchat *gc; gc = imcb_chat_new( ic, conv->name ); + imcb_chat_name_hint( gc, conv->title ); + imcb_chat_topic( gc, NULL, conv->title, 0 ); + conv->ui_data = gc; gc->data = conv; |