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/source/passwordcontainer.cxx | |
parent | df10d8ae13df3998ba50b815b9c40a996c40c872 (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I0bdb1669eff6b2e2fbecae7d1cc720dfc0d53c20
Diffstat (limited to 'uui/source/passwordcontainer.cxx')
-rw-r--r-- | uui/source/passwordcontainer.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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, |