Mercurial > pidgin
diff src/protocols/msn/msn.c @ 6035:8c44020a958e
[gaim-migrate @ 6485]
gaim_request_input() now takes a masked bool, which, if enabled, masks the
text on the entry field so that it cannot be seen. Good for password input
requests, and what do you know, that's why this is written!
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Sat, 05 Jul 2003 21:54:19 +0000 |
parents | 01dd6b652c22 |
children | d8cd876e613e |
line wrap: on
line diff
--- a/src/protocols/msn/msn.c Sat Jul 05 20:52:43 2003 +0000 +++ b/src/protocols/msn/msn.c Sat Jul 05 21:54:19 2003 +0000 @@ -166,7 +166,7 @@ gaim_request_input(gc, NULL, _("Set your friendly name."), _("This is the name that other MSN buddies will " "see you as."), - gaim_connection_get_display_name(gc), FALSE, + gaim_connection_get_display_name(gc), FALSE, FALSE, _("OK"), G_CALLBACK(msn_act_id), _("Cancel"), NULL, gc); } @@ -177,7 +177,7 @@ MsnSession *session = gc->proto_data; gaim_request_input(gc, NULL, _("Set your home phone number."), NULL, - msn_user_get_home_phone(session->user), FALSE, + msn_user_get_home_phone(session->user), FALSE, FALSE, _("OK"), G_CALLBACK(msn_set_home_phone_cb), _("Cancel"), NULL, gc); } @@ -188,7 +188,7 @@ MsnSession *session = gc->proto_data; gaim_request_input(gc, NULL, _("Set your work phone number."), NULL, - msn_user_get_work_phone(session->user), FALSE, + msn_user_get_work_phone(session->user), FALSE, FALSE, _("OK"), G_CALLBACK(msn_set_work_phone_cb), _("Cancel"), NULL, gc); } @@ -199,7 +199,7 @@ MsnSession *session = gc->proto_data; gaim_request_input(gc, NULL, _("Set your mobile phone number."), NULL, - msn_user_get_mobile_phone(session->user), FALSE, + msn_user_get_mobile_phone(session->user), FALSE, FALSE, _("OK"), G_CALLBACK(msn_set_mobile_phone_cb), _("Cancel"), NULL, gc); } @@ -231,7 +231,7 @@ data->passport = passport; gaim_request_input(gc, NULL, _("Send a mobile message."), NULL, - NULL, TRUE, + NULL, TRUE, FALSE, _("Page"), G_CALLBACK(send_to_mobile_cb), _("Close"), G_CALLBACK(close_mobile_page_cb), data);