<div dir="ltr">Hello all, <div><br></div><div>Sorry for the late response! This was a patch that I've submitted during the hackathon in Milan and it fixes the #fdo65295 on bugzilla.</div><div><br></div><div>Actually we've analyzed the content of the .docx exported by writer and it seems that the startColor and the endColor were accidentally reversed so that each time we import and export a docx with gradient background, we reverse the start and end color in the exported .docx file. </div>

<div><br></div><div>I would test the patch above to see if that solves the problem when I'm back home. </div><div><br></div><div>Sorry for the broken build :P</div><div><br></div><div>ATB,</div><div>Siqi</div><div><br>

</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/10/6 julien2412 <span dir="ltr"><<a href="mailto:serval2412@yahoo.fr" target="_blank">serval2412@yahoo.fr</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Hi,<br>
<br>
If StartColor and EndColor have been reversed, perhaps it was the same for<br>
qa part? So what about this patch?<br>
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx<br>
b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx<br>
index f771ef9..8fdb7fb 100644<br>
--- a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx<br>
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx<br>
@@ -733,8 +733,8 @@ void Test::testTextframeGradient()<br>
     uno::Reference<beans::XPropertySet> xFrame(xIndexAccess->getByIndex(0),<br>
uno::UNO_QUERY);<br>
     CPPUNIT_ASSERT_EQUAL(drawing::FillStyle_GRADIENT,<br>
getProperty<drawing::FillStyle>(xFrame, "FillStyle"));<br>
     awt::Gradient aGradient = getProperty<awt::Gradient>(xFrame,<br>
"FillGradient");<br>
-    CPPUNIT_ASSERT_EQUAL(sal_Int32(0xC0504D), aGradient.StartColor);<br>
-    CPPUNIT_ASSERT_EQUAL(sal_Int32(0xD99594), aGradient.EndColor);<br>
+    CPPUNIT_ASSERT_EQUAL(sal_Int32(0xD99594), aGradient.StartColor);<br>
+    CPPUNIT_ASSERT_EQUAL(sal_Int32(0xC0504D), aGradient.EndColor);<br>
     CPPUNIT_ASSERT_EQUAL(awt::GradientStyle_AXIAL, aGradient.Style);<br>
<br>
Julien<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://nabble.documentfoundation.org/Test-failure-tp4076788p4076897.html" target="_blank">http://nabble.documentfoundation.org/Test-failure-tp4076788p4076897.html</a><br>
Sent from the Dev mailing list archive at Nabble.com.<br>
_______________________________________________<br>
LibreOffice mailing list<br>
<a href="mailto:LibreOffice@lists.freedesktop.org">LibreOffice@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/libreoffice" target="_blank">http://lists.freedesktop.org/mailman/listinfo/libreoffice</a><br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><div>--------</div><div><br></div><div>Cordialement,</div>Siqi LIU<div><br><div>Étudiant Ingénieur, 1ère année</div><div>École Supérieur d'Électricité (Supélec)</div>

</div><div><br></div></div>
</div>