summaryrefslogtreecommitdiff
path: root/basic/source/uno/scriptcont.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/uno/scriptcont.cxx')
-rw-r--r--basic/source/uno/scriptcont.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/uno/scriptcont.cxx b/basic/source/uno/scriptcont.cxx
index bc758f292228..1ccdc06a761e 100644
--- a/basic/source/uno/scriptcont.cxx
+++ b/basic/source/uno/scriptcont.cxx
@@ -90,7 +90,7 @@ void SfxScriptLibraryContainer::setLibraryPassword
SfxLibrary* pImplLib = getImplLib( rLibraryName );
if( rPassword.Len() )
{
- pImplLib->mbDoc50Password = sal_True;
+ pImplLib->mbDoc50Password = true;
pImplLib->mbPasswordProtected = sal_True;
pImplLib->maPassword = rPassword;
}
@@ -112,7 +112,7 @@ void SfxScriptLibraryContainer::clearLibraryPassword( const String& rLibraryName
try
{
SfxLibrary* pImplLib = getImplLib( rLibraryName );
- pImplLib->mbDoc50Password = sal_False;
+ pImplLib->mbDoc50Password = false;
pImplLib->mbPasswordProtected = sal_False;
pImplLib->maPassword = OUString();
}
@@ -503,7 +503,7 @@ void SAL_CALL SfxScriptLibraryContainer::changeLibraryPassword( const OUString&
{
// Store application basic uncrypted
uno::Reference< embed::XStorage > xStorage;
- storeLibraries_Impl( xStorage, sal_False );
+ storeLibraries_Impl( xStorage, false );
bKillCryptedFiles = sal_True;
}
}
@@ -523,7 +523,7 @@ void SAL_CALL SfxScriptLibraryContainer::changeLibraryPassword( const OUString&
{
// Store applictaion basic crypted
uno::Reference< embed::XStorage > xStorage;
- storeLibraries_Impl( xStorage, sal_False );
+ storeLibraries_Impl( xStorage, false );
bKillUncryptedFiles = sal_True;
}
}