[Libreoffice-commits] core.git: filter/source sw/qa

Szymon Kłos szymon.klos at collabora.com
Wed Aug 9 11:47:18 UTC 2017


 filter/source/msfilter/msdffimp.cxx       |    2 +-
 sw/qa/extras/ww8export/data/tdf111480.doc |binary
 sw/qa/extras/ww8export/ww8export2.cxx     |    9 +++++++++
 3 files changed, 10 insertions(+), 1 deletion(-)

New commits:
commit 2b562f7531d097def1cf312f13df2fe9e9789ebe
Author: Szymon Kłos <szymon.klos at collabora.com>
Date:   Wed Aug 9 12:15:53 2017 +0200

    tdf#111480 Circular text was imported horizontally
    
    Change-Id: I84a6c3a30fd1dddf104ad8bf037a5e0b2a90d376
    Reviewed-on: https://gerrit.libreoffice.org/40912
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Szymon Kłos <szymon.klos at collabora.com>

diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index adbd3d41b9a3..5360f750da48 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -4407,7 +4407,7 @@ SdrObject* SvxMSDffManager::ImportShape( const DffRecordHeader& rHd, SvStream& r
                         aFont.SetFamilyName( aFontName );
                         auto nTextWidth = pOut->GetTextWidth( aObjectText );
 
-                        if ( nTextWidth )
+                        if ( nTextWidth && aObjData.eShapeType == mso_sptTextPlainText )
                         {
                             fRatio = aFont.GetFontSize().Height();
                             fRatio /= nTextWidth;
diff --git a/sw/qa/extras/ww8export/data/tdf111480.doc b/sw/qa/extras/ww8export/data/tdf111480.doc
new file mode 100755
index 000000000000..888126066624
Binary files /dev/null and b/sw/qa/extras/ww8export/data/tdf111480.doc differ
diff --git a/sw/qa/extras/ww8export/ww8export2.cxx b/sw/qa/extras/ww8export/ww8export2.cxx
index 70aa498d5fdc..7ace54f52f61 100644
--- a/sw/qa/extras/ww8export/ww8export2.cxx
+++ b/sw/qa/extras/ww8export/ww8export2.cxx
@@ -162,6 +162,15 @@ DECLARE_WW8EXPORT_TEST(testTdf91687, "tdf91687.doc")
     CPPUNIT_ASSERT_EQUAL((sal_Int32)18105, xWatermark->getSize().Width);
 }
 
+DECLARE_WW8EXPORT_TEST(testTdf111480, "tdf111480.doc")
+{
+    // Circular text was imported horizontally
+    uno::Reference<drawing::XShape> xText = getShape(1);
+
+    CPPUNIT_ASSERT(xText->getSize().Height > 11000);
+    CPPUNIT_ASSERT(xText->getSize().Width  > 11000);
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */


More information about the Libreoffice-commits mailing list