summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-08-22 12:05:18 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-08-22 14:02:31 +0900
commit43b989808142f49347929311347f9402f4c06368 (patch)
tree76bab7f85f12dbc4452f9c0b330d1ed2b7da82f4 /stoc
parent92d18638045a1f8ebcb36d8a9f0a9fb8c481e50b (diff)
sal_Bool to bool
Change-Id: I4ab448a461a9fe37ba18838357d371f71b0a496c
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/invocation/invocation.cxx8
-rw-r--r--stoc/source/invocation_adapterfactory/iafactory.cxx2
2 files changed, 5 insertions, 5 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;
}
}
}
diff --git a/stoc/source/invocation_adapterfactory/iafactory.cxx b/stoc/source/invocation_adapterfactory/iafactory.cxx
index ad7dbecb8125..c430f348e81b 100644
--- a/stoc/source/invocation_adapterfactory/iafactory.cxx
+++ b/stoc/source/invocation_adapterfactory/iafactory.cxx
@@ -229,7 +229,7 @@ static inline void constructRuntimeException(
}
//------------------------------------------------------------------------------
-static inline sal_Bool type_equals(
+static inline bool type_equals(
typelib_TypeDescriptionReference * pType1,
typelib_TypeDescriptionReference * pType2 )
SAL_THROW(())