diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-22 12:05:18 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-22 14:02:31 +0900 |
commit | 43b989808142f49347929311347f9402f4c06368 (patch) | |
tree | 76bab7f85f12dbc4452f9c0b330d1ed2b7da82f4 /stoc/source/invocation | |
parent | 92d18638045a1f8ebcb36d8a9f0a9fb8c481e50b (diff) |
sal_Bool to bool
Change-Id: I4ab448a461a9fe37ba18838357d371f71b0a496c
Diffstat (limited to 'stoc/source/invocation')
-rw-r--r-- | stoc/source/invocation/invocation.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stoc/source/invocation/invocation.cxx b/stoc/source/invocation/invocation.cxx index 8640f53fbcdc..13b9448dcc96 100644 --- a/stoc/source/invocation/invocation.cxx +++ b/stoc/source/invocation/invocation.cxx @@ -876,7 +876,7 @@ InvocationInfo SAL_CALL Invocation_Impl::getInfoForName( const OUString& aName, return _xDirect2->getInfoForName( aName, bExact ); } - sal_Bool bFound = sal_False; + bool bFound = false; OUString aExactName = aName; InvocationInfo aRetInfo; @@ -889,7 +889,7 @@ InvocationInfo SAL_CALL Invocation_Impl::getInfoForName( const OUString& aName, Reference<XIdlMethod> xMethod = _xIntrospectionAccess->getMethod ( aExactName, MethodConcept::ALL ^ MethodConcept::DANGEROUS ); fillInfoForMethod( aRetInfo, xMethod ); - bFound = sal_True; + bFound = true; } else { @@ -899,13 +899,13 @@ InvocationInfo SAL_CALL Invocation_Impl::getInfoForName( const OUString& aName, Property aProp = _xIntrospectionAccess->getProperty ( aExactName, PropertyConcept::ALL ^ PropertyConcept::DANGEROUS ); fillInfoForProperty( aRetInfo, aProp ); - bFound = sal_True; + bFound = true; } // NameAccess else if( _xNameAccess.is() && _xNameAccess->hasByName( aExactName ) ) { fillInfoForNameAccess( aRetInfo, aExactName ); - bFound = sal_True; + bFound = true; } } } |