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

Partial revert of e9107054

"Use Any.get<T>(..) instead of Any.getValue(..) and ugly cast."  An empty
OString means a different thing than a char* nullptr to
FastSerializerHelper::startElementNS.  Broke CppunitTest_sd_export_tests at
least --with-export-validation.

Change-Id: I4ad23c4130bf39708064569b964bcb7fb44cd3b0
üst e4d50022
......@@ -632,11 +632,10 @@ void DrawingML::WriteOutline( Reference<XPropertySet> rXPropSet )
break;
}
OString sWidth = (nLineWidth > 1 && nStyleLineWidth != nLineWidth) ? I64S(MM100toEMU(nLineWidth)) : NULL;
mpFS->startElementNS( XML_a, XML_ln,
XML_cap, cap,
XML_w, sWidth,
XML_w, nLineWidth > 1 && nStyleLineWidth != nLineWidth ?
I64S( MM100toEMU( nLineWidth ) ) :NULL,
FSEND );
if( bColorSet )
......
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