aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/oscar
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2007-06-04 14:22:05 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2007-06-04 14:22:05 +0100
commitd06eabf19ec3f849d8bab22c13d43e4eba9a48ee (patch)
tree0528ff030b32b1de53967641ce29f44653286012 /protocols/oscar
parent54f2f55f983f4b6bb8a58772bbd1137580e3307f (diff)
Added imcb_buddy_nick_hint so the Jabber conference module can suggest sane
nicknames for chatroom participants. There'll probably be a lot of underscores now, but this is by far the cleanest way to implement this, I think. At least now whispers will work properly. Also using this function call to set names for ICQ contacts in a slightly saner way.
Diffstat (limited to 'protocols/oscar')
-rw-r--r--protocols/oscar/oscar.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/oscar/oscar.c b/protocols/oscar/oscar.c
index b72c683a..39d14811 100644
--- a/protocols/oscar/oscar.c
+++ b/protocols/oscar/oscar.c
@@ -2021,6 +2021,7 @@ static int gaim_ssi_parselist(aim_session_t *sess, aim_frame_t *fr, ...) {
imcb_add_buddy(ic, curitem->name, NULL);
if (realname) {
+ imcb_buddy_nick_hint(ic, curitem->name, realname);
imcb_rename_buddy(ic, curitem->name, realname);
g_free(realname);
}