Kaydet (Commit) 0ffed545 authored tarafından Miklos Vajna's avatar Miklos Vajna

Related: fdo#60990 w:textbox -> v:textbox

By accident, Word accepted this, but not our importer.

Change-Id: Ie6a7846f1cb594b85245af74053d680af9e77d0e
üst 1753c4f9
...@@ -2848,7 +2848,7 @@ void DocxAttributeOutput::WriteOutliner(const OutlinerParaObject& rParaObj) ...@@ -2848,7 +2848,7 @@ void DocxAttributeOutput::WriteOutliner(const OutlinerParaObject& rParaObj)
sal_Int32 nPara = rEditObj.GetParagraphCount(); sal_Int32 nPara = rEditObj.GetParagraphCount();
m_pSerializer->startElementNS( XML_w, XML_textbox, FSEND ); m_pSerializer->startElementNS( XML_v, XML_textbox, FSEND );
m_pSerializer->startElementNS( XML_w, XML_txbxContent, FSEND ); m_pSerializer->startElementNS( XML_w, XML_txbxContent, FSEND );
for (sal_Int32 n = 0; n < nPara; ++n) for (sal_Int32 n = 0; n < nPara; ++n)
{ {
...@@ -2894,7 +2894,7 @@ void DocxAttributeOutput::WriteOutliner(const OutlinerParaObject& rParaObj) ...@@ -2894,7 +2894,7 @@ void DocxAttributeOutput::WriteOutliner(const OutlinerParaObject& rParaObj)
m_pSerializer->endElementNS( XML_w, XML_p ); m_pSerializer->endElementNS( XML_w, XML_p );
} }
m_pSerializer->endElementNS( XML_w, XML_txbxContent ); m_pSerializer->endElementNS( XML_w, XML_txbxContent );
m_pSerializer->endElementNS( XML_w, XML_textbox ); m_pSerializer->endElementNS( XML_v, XML_textbox );
} }
oox::drawingml::DrawingML& DocxAttributeOutput::GetDrawingML() oox::drawingml::DrawingML& DocxAttributeOutput::GetDrawingML()
......
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