--- a/libpurple/protocols/silc10/silc.c Sun Nov 11 16:45:19 2007 +0000 +++ b/libpurple/protocols/silc10/silc.c Sat Nov 17 17:27:48 2007 +0000 @@ -726,7 +726,7 @@ purple_request_field_group_add_field(g, f); purple_request_fields_add_group(fields, g); - purple_request_fields_with_hint(gc, _("User Online Status Attributes"), + purple_request_fields(gc, _("User Online Status Attributes"), _("User Online Status Attributes"), _("You can let other users see your online status information " "and your personal information. Please fill the information " @@ -734,7 +734,7 @@ fields, _("OK"), G_CALLBACK(silcpurple_attrs_cb), _("Cancel"), G_CALLBACK(silcpurple_attrs_cancel), - gc->account, NULL, NULL, PURPLE_REQUEST_UI_HINT_BLIST, gc); + gc->account, NULL, NULL, gc); } static void @@ -936,14 +936,11 @@ purple_request_field_group_add_field(g, f); purple_request_fields_add_group(fields, g); - purple_request_fields_with_hint(gc, _("Create New SILC Key Pair"), - _("Create New SILC Key Pair"), NULL, - fields, _("Generate Key Pair"), - G_CALLBACK(silcpurple_create_keypair_cb), - _("Cancel"), - G_CALLBACK(silcpurple_create_keypair_cancel), - gc->account, NULL, NULL, - PURPLE_REQUEST_UI_HINT_BLIST, gc); + purple_request_fields(gc, _("Create New SILC Key Pair"), + _("Create New SILC Key Pair"), NULL, fields, + _("Generate Key Pair"), G_CALLBACK(silcpurple_create_keypair_cb), + _("Cancel"), G_CALLBACK(silcpurple_create_keypair_cancel), + gc->account, NULL, NULL, gc); g_strfreev(u); silc_free(hostname);