From 4a8c0d313540bd78c9c381edd548b976c580ca9a Mon Sep 17 00:00:00 2001 From: Andrzej Hunt Date: Sun, 3 Jan 2016 17:37:35 -0800 Subject: loplugin:implicitboolconversion Change-Id: I2ef26c34a424e653d85597c85baa736c19004313 --- cppu/source/typelib/typelib.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cppu') diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx index e105bfe0d1a0..760f996cace5 100644 --- a/cppu/source/typelib/typelib.cxx +++ b/cppu/source/typelib/typelib.cxx @@ -383,10 +383,10 @@ static inline void typelib_typedescription_initTables( { typelib_InterfaceTypeDescription * pITD = reinterpret_cast(pTD); - std::vector aReadWriteAttributes(pITD->nAllMembers); + std::vector aReadWriteAttributes(pITD->nAllMembers); for ( sal_Int32 i = pITD->nAllMembers; i--; ) { - aReadWriteAttributes[i] = sal_False; + aReadWriteAttributes[i] = false; if( typelib_TypeClass_INTERFACE_ATTRIBUTE == pITD->ppAllMembers[i]->eTypeClass ) { typelib_TypeDescription * pM = nullptr; -- cgit v1.2.3