<div dir="ltr">Hi Regina ,Miklos, all,<div><br><div>Thanks for the great help and the code pointers .</div><div>I tried to modify the code from SdImportTest::testTdf97808() in</div>sd/qa/unit/import-tests.cxx.<div>In the code for tdf97808 a line is inspected and using the property </div><div>getPropertyValue("Style") it was checked if it is equal to the property "objectwithoutfill" .</div><div>Observing a few more tests I replaced XLine with Xshape  and compared for "Style"</div><div><br>    uno::Reference<beans::XPropertySet> xLine(<br>          xPage->getByIndex(0), uno::UNO_QUERY_THROW);<br>    uno::Reference<beans::XPropertySet> xParent;<br>    CPPUNIT_ASSERT(xLine->getPropertyValue("Style") >>= xParent);<br>    CPPUNIT_ASSERT_EQUAL(xStyle, xParent);</div><div><br></div><div>to</div><div><br>    uno::Reference< drawing::XShape > xShape(<br>        xPage->getByIndex(0), uno::UNO_QUERY_THROW );<br>    uno::Reference<beans::XPropertySet> xParent;<br>    CPPUNIT_ASSERT(xShape->getPropertyValue("Style") >>= xParent);<br>    CPPUNIT_ASSERT_EQUAL(xStyle, xParent);</div><div><br></div><div>but xShape does not have getPropertyValue("") method hence the build failed .</div><div>Can we do some modification to xShape ?</div><div>Maybe changing the method or something</div><div><br></div><div>Also ,  tdf123684 is very similar to tdf123841 , Check for an object and inspect </div><div>its style to be FillStyle_NONE, I used the code and have submitted a patch</div><div><a href="https://gerrit.libreoffice.org/c/core/+/87440">https://gerrit.libreoffice.org/c/core/+/87440</a><br></div><div>and here is the build</div><div> <a href="https://ci.libreoffice.org/job/gerrit_master/48393/">https://ci.libreoffice.org/job/gerrit_master/48393/</a></div><div><div><div>I may be wrong in both the approaches.</div><div>Please have a look ,  and suggest me furthur steps.</div></div></div></div><div><br></div><div>SIncerely ,</div><div>Shivam</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, 23 Jan 2020 at 16:23, Regina Henschel <<a href="mailto:rb.henschel@t-online.de">rb.henschel@t-online.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
> I had some private mails with Shivam. I have suggested to create a new <br>
> document and verify, that the default style has filling NONE.<br>
<br>
default style --> style, which is "Object without fill" in the UI<br>
_______________________________________________<br>
LibreOffice mailing list<br>
<a href="mailto:LibreOffice@lists.freedesktop.org" target="_blank">LibreOffice@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/libreoffice" rel="noreferrer" target="_blank">https://lists.freedesktop.org/mailman/listinfo/libreoffice</a><br>
</blockquote></div>