diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-03-08 14:21:26 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-03-08 14:35:11 +0100 |
commit | 381613916d42a1e18e2824b5d41028dcfe19659a (patch) | |
tree | f345351e19e1070205c16b7f07bb02b08cd285a9 | |
parent | a2a40409e28e7db7d2341396401072a3f912d29a (diff) |
fix OOXML validaition error
Change-Id: I26e063cd1971d980583e884ca2f4e0ba9d9391ad
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index f51d89235358..70445d18ba8a 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -4024,6 +4024,9 @@ void DocxAttributeOutput::StartStyle( const OUString& rName, StyleType eType, FSNS(XML_w, XML_val), OUStringToOString(aLink, RTL_TEXTENCODING_UTF8).getStr(), FSEND); + if ( bAutoUpdate ) + m_pSerializer->singleElementNS( XML_w, XML_autoRedefine, FSEND ); + if (!aUiPriority.isEmpty()) m_pSerializer->singleElementNS(XML_w, XML_uiPriority, FSNS(XML_w, XML_val), OUStringToOString(aUiPriority, RTL_TEXTENCODING_UTF8).getStr(), @@ -4040,9 +4043,6 @@ void DocxAttributeOutput::StartStyle( const OUString& rName, StyleType eType, m_pSerializer->singleElementNS(XML_w, XML_rsid, FSNS(XML_w, XML_val), OUStringToOString(aRsid, RTL_TEXTENCODING_UTF8).getStr(), FSEND); - - if ( bAutoUpdate ) - m_pSerializer->singleElementNS( XML_w, XML_autoRedefine, FSEND ); } void DocxAttributeOutput::EndStyle() |