# HG changeset patch # User Gabriel Schulhof # Date 1189627065 0 # Node ID c4ac3aa20ea2e232e29a0d9e9b517002fe4eaf51 # Parent e10ed6060df3e526d22c0a7783c66ac78671a9a9 Fixing usernick.c and, for some strange reason, request.h diff -r e10ed6060df3 -r c4ac3aa20ea2 libpurple/protocols/jabber/usernick.c --- a/libpurple/protocols/jabber/usernick.c Wed Sep 12 19:49:14 2007 +0000 +++ b/libpurple/protocols/jabber/usernick.c Wed Sep 12 19:57:45 2007 +0000 @@ -77,7 +77,7 @@ purple_request_input(js->gc, _("Set User Nickname"), _("Please specify a new nickname for you."), _("This information is visible to all contacts on your contact list, so choose something appropriate."), oldnickname, FALSE, FALSE, NULL, _("Set"), PURPLE_CALLBACK(do_nick_set), _("Cancel"), NULL, - purple_connection_get_account(js->gc), NULL, NULL, js); + purple_connection_get_account(js->gc), NULL, NULL, "blist", js); } static void do_nick_set_nick(PurplePluginAction *action) { diff -r e10ed6060df3 -r c4ac3aa20ea2 libpurple/request.h --- a/libpurple/request.h Wed Sep 12 19:49:14 2007 +0000 +++ b/libpurple/request.h Wed Sep 12 19:57:45 2007 +0000 @@ -1186,6 +1186,7 @@ * @param account The PurpleAccount associated with this request, or NULL if none is * @param who The username of the buddy assocaited with this request, or NULL if none is * @param conv The PurpleConversation associated with this request, or NULL if none is + * @param ui_hint UI hint * @param user_data The data to pass to the callback. * * @return A UI-specific handle. @@ -1197,7 +1198,7 @@ const char *ok_text, GCallback ok_cb, const char *cancel_text, GCallback cancel_cb, PurpleAccount *account, const char *who, PurpleConversation *conv, - void *user_data); + const char *ui_hint, void *user_data); /** * Prompts the user for multiple-choice input.