diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-10-07 17:02:13 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-10-07 17:08:18 +0900 |
commit | d57010faf14c7bf2efc0eeb37249b671f7ea986b (patch) | |
tree | 119673b65bb1900c199970e5f36988205b57a118 /basic/source/uno | |
parent | aa52753785154f0e95fed559f613f5eae9105dcf (diff) |
sal_Bool to bool
Change-Id: Ie8e35c4342db6e2dc35fca33cee7b4d71cfcb732
Diffstat (limited to 'basic/source/uno')
-rw-r--r-- | basic/source/uno/scriptcont.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/basic/source/uno/scriptcont.cxx b/basic/source/uno/scriptcont.cxx index 7e1bc645aeb5..0104fd8e715e 100644 --- a/basic/source/uno/scriptcont.cxx +++ b/basic/source/uno/scriptcont.cxx @@ -466,8 +466,8 @@ void SAL_CALL SfxScriptLibraryContainer::changeLibraryPassword( const OUString& // Library must be loaded loadLibrary( Name ); - sal_Bool bKillCryptedFiles = sal_False; - sal_Bool bKillUncryptedFiles = sal_False; + bool bKillCryptedFiles = false; + bool bKillUncryptedFiles = false; // Remove or change password? if( bOldPassword ) @@ -503,7 +503,7 @@ void SAL_CALL SfxScriptLibraryContainer::changeLibraryPassword( const OUString& // Store application basic uncrypted uno::Reference< embed::XStorage > xStorage; storeLibraries_Impl( xStorage, false ); - bKillCryptedFiles = sal_True; + bKillCryptedFiles = true; } } } @@ -523,7 +523,7 @@ void SAL_CALL SfxScriptLibraryContainer::changeLibraryPassword( const OUString& // Store applictaion basic crypted uno::Reference< embed::XStorage > xStorage; storeLibraries_Impl( xStorage, false ); - bKillUncryptedFiles = sal_True; + bKillUncryptedFiles = true; } } @@ -913,10 +913,10 @@ sal_Bool SfxScriptLibraryContainer::implLoadPasswordLibrary pScriptLib->mbLoadedBinary = true; } - sal_Bool bLoadSource = sal_False; + bool bLoadSource = false; if( !pScriptLib->mbLoadedSource && pLib->mbPasswordVerified && !bVerifyPasswordOnly ) { - bLoadSource = sal_True; + bLoadSource = true; pScriptLib->mbLoadedSource = true; } |