https://bugs.documentfoundation.org/show_bug.cgi?id=99660
Julien Nabet <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |WORKSFORME Status|NEW |RESOLVED --- Comment #9 from Julien Nabet <[email protected]> --- (In reply to Roman Kuznetsov from comment #8) > Julien, is this one still actual? There have been several commits on writerfilter/source/ooxml/model.xml, at least what dcb314 described doesn't appear anymore in workdir/CustomTarget/writerfilter/source/ooxml/OOXMLFactory_shared-math.cxx Here's what we see now: 257 case NN_shared_math|DEFINE_ST_XAlign: 258 if (aValue.empty()) 259 return false; 260 switch (aValue[0]) 261 { 262 case 'c': 263 if (aValue == "center") { rOutValue = NS_ooxml::LN_Value_math_ST_XAlign_center; } 264 else { return false; } 265 return true; 266 case 'l': 267 if (aValue == "left") { rOutValue = NS_ooxml::LN_Value_math_ST_XAlign_left; } 268 else { return false; } 269 return true; 270 case 'r': 271 if (aValue == "right") { rOutValue = NS_ooxml::LN_Value_math_ST_XAlign_right; } 272 else { return false; } 273 return true; 274 } 275 return false; So let's put this one to WFM then. dcb314: don't hesitate to reopen if I missed something. Roman: thank you for the ping! :-) -- You are receiving this mail because: You are the assignee for the bug.
