bridges: [loplugin:salbool]

Change-Id: I1924f2b18763e42013c2b5ce80b664674e460fc7
This commit is contained in:
Michael Stahl
2016-06-20 14:47:56 +02:00
parent bd8c029301
commit 371ddde018
2 changed files with 4 additions and 4 deletions

View File

@@ -277,8 +277,8 @@ extern "C" void cpp_vtable_call(
typelib_MethodParameter aParam;
aParam.pTypeRef =
reinterpret_cast<typelib_InterfaceAttributeTypeDescription *>(aMemberDescr.get())->pAttributeTypeRef;
aParam.bIn = sal_True;
aParam.bOut = sal_False;
aParam.bIn = true;
aParam.bOut = false;
cpp2uno_call(
pCppI, aMemberDescr.get(),

View File

@@ -286,8 +286,8 @@ void unoInterfaceProxyDispatch(
typelib_MethodParameter aParam;
aParam.pTypeRef =
reinterpret_cast<typelib_InterfaceAttributeTypeDescription const *>(pMemberDescr)->pAttributeTypeRef;
aParam.bIn = sal_True;
aParam.bOut = sal_False;
aParam.bIn = true;
aParam.bOut = false;
typelib_TypeDescriptionReference * pReturnTypeRef = 0;
OUString aVoidName("void");