cppuhelper: sal_Bool -> bool

Change-Id: I6e0e6c1e4880a652ea4d8f0cccf9d8103c2cbbef
This commit is contained in:
Stephan Bergmann
2014-02-16 20:57:55 +01:00
parent 34a44156b3
commit 7f902e1697
7 changed files with 36 additions and 36 deletions

View File

@@ -31,7 +31,7 @@ sal_Bool component_writeInfoHelper(
SAL_UNUSED_PARAMETER void *, void * pRegistryKey,
ImplementationEntry const * entries)
{
sal_Bool bRet = sal_False;
bool bRet = false;
try
{
if( pRegistryKey )
@@ -47,7 +47,7 @@ sal_Bool component_writeInfoHelper(
for ( sal_Int32 nPos = 0 ; nPos < seq.getLength(); nPos ++ )
xNewKey->createKey( pArray[nPos] );
}
bRet = sal_True;
bRet = true;
}
}
catch ( InvalidRegistryException & )