aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/jabber/jabber_util.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2007-04-15 18:03:08 -0700
committerWilmer van der Gaast <wilmer@gaast.net>2007-04-15 18:03:08 -0700
commit84b045d409f1e8da6d8bf379c6fef7236dcd9bcd (patch)
tree765681f302614273ac61e1560955a7307252097e /protocols/jabber/jabber_util.c
parentc2fb38096ea4e75a680e57e103d4a4986aa84c75 (diff)
s/imc/imcb/ for callback functions. Moved things aroundin nogaim.h a
little bit, grouping things by category instead of original Gaim 0.58 filename.
Diffstat (limited to 'protocols/jabber/jabber_util.c')
-rw-r--r--protocols/jabber/jabber_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/jabber/jabber_util.c b/protocols/jabber/jabber_util.c
index cc237b03..949a7a4b 100644
--- a/protocols/jabber/jabber_util.c
+++ b/protocols/jabber/jabber_util.c
@@ -223,7 +223,7 @@ static void jabber_buddy_ask_yes( gpointer w, struct jabber_buddy_ask_data *bla
presence_send_request( bla->ic, bla->handle, "subscribed" );
if( find_buddy( bla->ic, bla->handle ) == NULL )
- show_got_added( bla->ic, bla->handle, NULL );
+ imcb_ask_add( bla->ic, bla->handle, NULL );
g_free( bla->handle );
g_free( bla );
@@ -246,7 +246,7 @@ void jabber_buddy_ask( struct im_connection *ic, char *handle )
bla->handle = g_strdup( handle );
buf = g_strdup_printf( "The user %s wants to add you to his/her buddy list.", handle );
- do_ask_dialog( ic, buf, bla, jabber_buddy_ask_yes, jabber_buddy_ask_no );
+ imcb_ask( ic, buf, bla, jabber_buddy_ask_yes, jabber_buddy_ask_no );
g_free( buf );
}