diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-16 22:50:50 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 17:55:18 +0100 |
commit | faced6b5f72b096800a232749cce6b38a76d5bac (patch) | |
tree | d0fc963362301ef6d1eeedb7e6af1b05cd565c00 /svl | |
parent | 7f902e1697d077dd4a32846ff85f6134a556d528 (diff) |
ucbhelper: sal_Bool -> bool
Change-Id: Iee327c3dd75bebb35d99de01eaa7103956e08974
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/passwordcontainer/passwordcontainer.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx b/svl/source/passwordcontainer/passwordcontainer.cxx index 5a0398233d59..0e0cb3c3f1b8 100644 --- a/svl/source/passwordcontainer/passwordcontainer.cxx +++ b/svl/source/passwordcontainer/passwordcontainer.cxx @@ -1419,16 +1419,16 @@ MasterPasswordRequest_Impl::MasterPasswordRequest_Impl( PasswordRequestMode Mode m_xAuthSupplier = new ::ucbhelper::InteractionSupplyAuthentication( this, - sal_False, // bCanSetRealm - sal_False, // bCanSetUserName - sal_True, // bCanSetPassword - sal_False, // bCanSetAccount + false, // bCanSetRealm + false, // bCanSetUserName + true, // bCanSetPassword + false, // bCanSetAccount aRememberModes, // rRememberPasswordModes RememberAuthentication_NO, // eDefaultRememberPasswordMode aRememberModes, // rRememberAccountModes RememberAuthentication_NO, // eDefaultRememberAccountMode - sal_False, // bCanUseSystemCredentials - sal_False // bDefaultUseSystemCredentials + false, // bCanUseSystemCredentials + false // bDefaultUseSystemCredentials ); Sequence< |