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

loplugin:implicitboolconversion

Change-Id: I6caec8c11fab5fc8f1318be676e4bdf5f9cdbac5
üst b75c3bd0
......@@ -742,7 +742,7 @@ writeCustomProperties( XmlFilterBase& rSelf, Reference< XDocumentProperties > xP
{
bool val ;
val = *( sal_Bool * )( aprop[n].Value ).getValue();
writeElement( pAppProps, FSNS( XML_vt, XML_bool ), val);
writeElement( pAppProps, FSNS( XML_vt, XML_bool ), val ? 1 : 0);
}
break;
default:
......
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