summaryrefslogtreecommitdiff
path: root/cppuhelper/source/implementationentry.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cppuhelper/source/implementationentry.cxx')
-rw-r--r--cppuhelper/source/implementationentry.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/source/implementationentry.cxx b/cppuhelper/source/implementationentry.cxx
index aa587fc59d29..6b10eaca41f5 100644
--- a/cppuhelper/source/implementationentry.cxx
+++ b/cppuhelper/source/implementationentry.cxx
@@ -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 & )