# HG changeset patch # User Mark Doliner # Date 1070924070 0 # Node ID 10010e717354efd04e7f4d7bbf2b6d160d9da307 # Parent 533419ef5569da7777b379004fc91314a6f8b4e6 [gaim-migrate @ 8457] I made the default option for password options "false." Is that a'ight? Lemme know if you want me to change it back. Just I'll do it man, I'm crazy. <-- mxpxpod has quit ("Guns kill people as much as spoons made Rosie O'Donnell fat..") I love that quit message really I love anything that rips on Rosie jeans? committer: Tailor Script diff -r 533419ef5569 -r 10010e717354 src/gtkaccount.c --- a/src/gtkaccount.c Mon Dec 08 07:11:46 2003 +0000 +++ b/src/gtkaccount.c Mon Dec 08 22:54:30 2003 +0000 @@ -472,7 +472,7 @@ dialog->remember_pass_check = gtk_check_button_new_with_label(_("Remember password")); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(dialog->remember_pass_check), - TRUE); + FALSE); gtk_box_pack_start(GTK_BOX(vbox), dialog->remember_pass_check, FALSE, FALSE, 0); gtk_widget_show(dialog->remember_pass_check); diff -r 533419ef5569 -r 10010e717354 src/main.c --- a/src/main.c Mon Dec 08 07:11:46 2003 +0000 +++ b/src/main.c Mon Dec 08 22:54:30 2003 +0000 @@ -156,7 +156,7 @@ account = gaim_accounts_find(username, NULL); if (!account) { account = gaim_account_new(username, "prpl-oscar"); - gaim_account_set_remember_password(account, TRUE); + gaim_account_set_remember_password(account, FALSE); gaim_accounts_add(account); }