diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-14 22:45:44 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-17 17:55:16 +0100 |
commit | d84cf2de01f17f2617846135081a819ce74dd87a (patch) | |
tree | 192bc83388393b8daefe0dd8b1610c50f111a7bd /sal/rtl/bootstrap.cxx | |
parent | 6f69fb5d7d7f66d17b56eca5a5b3f494c597b97a (diff) |
sal: sal_Bool -> bool
Change-Id: I071a931660dafc1ee5950da527b042fb175255b8
Diffstat (limited to 'sal/rtl/bootstrap.cxx')
-rw-r--r-- | sal/rtl/bootstrap.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx index 27d8d52befb6..43275c37d55c 100644 --- a/sal/rtl/bootstrap.cxx +++ b/sal/rtl/bootstrap.cxx @@ -158,7 +158,7 @@ namespace { //---------------------------------------------------------------------------- -static sal_Bool getFromCommandLineArgs( +static bool getFromCommandLineArgs( rtl::OUString const & key, rtl::OUString * value ) { OSL_ASSERT(value != NULL); @@ -202,7 +202,7 @@ static sal_Bool getFromCommandLineArgs( pNameValueList = &nameValueList; } - sal_Bool found = sal_False; + bool found = false; for( NameValueList::iterator ii = pNameValueList->begin() ; ii != pNameValueList->end() ; @@ -211,7 +211,7 @@ static sal_Bool getFromCommandLineArgs( if( (*ii).sName.equals(key) ) { *value = (*ii).sValue; - found = sal_True; + found = true; break; } } @@ -761,7 +761,7 @@ sal_Bool SAL_CALL rtl_bootstrap_get_from_handle( { osl::MutexGuard guard( osl::Mutex::getGlobalMutex() ); - sal_Bool found = sal_False; + bool found = false; if(ppValue && pName) { if (handle == 0) |