diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-04-03 22:21:35 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-04-03 22:21:35 +0200 |
commit | e6d6047924c7f6b70d51398a617ada03ac1850de (patch) | |
tree | 1945870856e8420c9184af2cfd28e8b0e45b1c64 /protocols/msn/msn_util.c | |
parent | 57ef86480b13cec08cec29f8352b168d9a16f4e4 (diff) |
Added/Fixed calls to show_got_added() in all IM-modules, now to fill in that
call. (It should ask the user if he/she wants to add a buddy to his/her list.)
Diffstat (limited to 'protocols/msn/msn_util.c')
-rw-r--r-- | protocols/msn/msn_util.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/msn/msn_util.c b/protocols/msn/msn_util.c index 5cda9f1c..c3bd73cc 100644 --- a/protocols/msn/msn_util.c +++ b/protocols/msn/msn_util.c @@ -130,6 +130,9 @@ static void msn_buddy_ask_yes( gpointer w, struct msn_buddy_ask_data *bla ) { msn_buddy_list_add( bla->gc, "AL", bla->handle, bla->realname ); + if( find_buddy( bla->gc, bla->handle ) == NULL ) + show_got_added( bla->gc, bla->handle, NULL ); + g_free( bla->handle ); g_free( bla->realname ); g_free( bla ); |