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

loplugin:simplifybool

Change-Id: I928325376b97ddd312af0f0a71187f29be607c6a
üst 5a80e327
......@@ -251,7 +251,7 @@ void appendValue( OUStringBuffer & buf,
break;
}
case typelib_TypeClass_BOOLEAN:
if (*static_cast< sal_Bool const * >(val) != sal_False)
if (*static_cast< sal_Bool const * >(val))
buf.append( "true" );
else
buf.append( "false" );
......
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