diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:21:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:27:30 +0200 |
commit | ed36962e464c26803009852684e2330bf954db02 (patch) | |
tree | b6c62411a16d1c490a711414c86beebe232a6de1 /uui | |
parent | df10d8ae13df3998ba50b815b9c40a996c40c872 (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I0bdb1669eff6b2e2fbecae7d1cc720dfc0d53c20
Diffstat (limited to 'uui')
-rw-r--r-- | uui/source/iahndl-authentication.cxx | 2 | ||||
-rw-r--r-- | uui/source/passwordcontainer.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/uui/source/iahndl-authentication.cxx b/uui/source/iahndl-authentication.cxx index a58a0be5978f..e4d1d6009c03 100644 --- a/uui/source/iahndl-authentication.cxx +++ b/uui/source/iahndl-authentication.cxx @@ -242,7 +242,7 @@ handleAuthenticationRequest_( else { bCanUseSystemCredentials = false; - bDefaultUseSystemCredentials = sal_False; + bDefaultUseSystemCredentials = false; } LoginErrorInfo aInfo; diff --git a/uui/source/passwordcontainer.cxx b/uui/source/passwordcontainer.cxx index f7e3d428beb3..e724fbb03441 100644 --- a/uui/source/passwordcontainer.cxx +++ b/uui/source/passwordcontainer.cxx @@ -55,7 +55,7 @@ bool fillContinuation( // Wants client that we use it? if ( xSupplyAuthentication2.is() && bCanUseSystemCredentials ) { - xSupplyAuthentication2->setUseSystemCredentials( sal_True ); + xSupplyAuthentication2->setUseSystemCredentials( true ); return true; } return false; @@ -98,7 +98,7 @@ bool fillContinuation( } if ( xSupplyAuthentication2.is() && bCanUseSystemCredentials ) - xSupplyAuthentication2->setUseSystemCredentials( sal_False ); + xSupplyAuthentication2->setUseSystemCredentials( false ); return true; } @@ -245,7 +245,7 @@ bool PasswordContainerHelper::addRecord( // If persistent storing of passwords is not yet // allowed, enable it. if ( !m_xPasswordContainer->isPersistentStoringAllowed() ) - m_xPasswordContainer->allowPersistentStoring( sal_True ); + m_xPasswordContainer->allowPersistentStoring( true ); m_xPasswordContainer->addPersistent( rURL, rUsername, |