summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--uui/source/iahndl-authentication.cxx2
-rw-r--r--uui/source/passwordcontainer.cxx6
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,