Kaydet (Commit) ec7e3c6d authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:simplifybool

Change-Id: I2a112a1e0b1761e1d05f789c6defb9d2bb6aa8de
üst 89e33144
......@@ -222,7 +222,7 @@ jobject Bridge::call_uno(
java_arg.l = jo_arg.get();
map_to_uno(
jni, uno_args[ nPos ], java_arg, type, 0,
false /* no assign */, sal_False != param.bOut,
false /* no assign */, param.bOut,
true /* special wrapped integral types */ );
}
catch (...)
......
......@@ -167,8 +167,8 @@ void Bridge::call_java(
jni, &java_args[ nPos ],
uno_args[ nPos ],
param.pTypeRef, 0,
sal_False != param.bIn /* convert uno value */,
sal_False != param.bOut /* build up array[ 1 ] */ );
param.bIn /* convert uno value */,
param.bOut /* build up array[ 1 ] */ );
}
catch (...)
{
......@@ -318,7 +318,7 @@ void Bridge::call_java(
map_to_uno(
jni, uno_args[ nPos ],
java_args[ nPos ], param.pTypeRef, 0,
sal_False != param.bIn /* assign if inout */,
param.bIn /* assign if inout */,
true /* out param */ );
}
catch (...)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment