summaryrefslogtreecommitdiff
path: root/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-11-21 17:41:24 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-11-21 18:10:59 +0100
commit17e51f427b3f0cec74ac8e0a1b3f51189006ae6f (patch)
tree8ba685a9029fe5972a490abc58fcef69b843f7e9 /sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx
parente37e8f38d1f5c6bc427965dc535f1a64f0c8649c (diff)
DOCX import: first page header should always set default headers as well
writerfilter imports a section with first and default headers / footers as two page styles: a first page one and a follow one. In case we nominally have a header on the first page only, we still need to enable it in the follow page style as well, otherwise on export when we recognize the first + follow chain as a single section, we'll end up with a header that looses its header margin. Change-Id: I4923daffefb243d2de4805a9931150ce4d9a6c81
Diffstat (limited to 'sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx')
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx b/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx
index 1432888887c6..3d7124111123 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx
@@ -453,7 +453,7 @@ DECLARE_OOXMLEXPORT_TEST(testVMLData, "TestVMLData.docx")
{
// The problem was exporter was exporting vml data for shape in w:rPr element.
// vml data should not come under w:rPr element.
- xmlDocPtr pXmlDoc = parseExport("word/header1.xml");
+ xmlDocPtr pXmlDoc = parseExport("word/header2.xml");
if (!pXmlDoc)
return;
CPPUNIT_ASSERT(getXPath(pXmlDoc, "/w:hdr/w:p/w:r/mc:AlternateContent/mc:Fallback/w:pict/v:rect", "stroked").match("f"));
@@ -463,7 +463,7 @@ DECLARE_OOXMLEXPORT_TEST(testImageData, "image_data.docx")
{
// The problem was exporter was exporting v:imagedata data for shape in w:pict as v:fill w element.
- xmlDocPtr pXmlDoc = parseExport("word/header1.xml");
+ xmlDocPtr pXmlDoc = parseExport("word/header2.xml");
if (!pXmlDoc)
return;
CPPUNIT_ASSERT(getXPath(pXmlDoc, "/w:hdr/w:p/w:r/mc:AlternateContent/mc:Fallback/w:pict/v:rect/v:imagedata", "detectmouseclick").match("t"));