summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzymon Kłos <szymon.klos@collabora.com>2017-08-09 12:15:53 +0200
committerAndras Timar <andras.timar@collabora.com>2017-08-09 14:28:17 +0200
commitd2801a3634b1e4e0fb52f1257fd7482aed8c337c (patch)
tree902b9255564404233449f6902a4eb75a698ed684
parent20241e3b747c1dd8b28dce79bc75230b9bf57752 (diff)
tdf#111480 Circular text was imported horizontally
Change-Id: I84a6c3a30fd1dddf104ad8bf037a5e0b2a90d376 Reviewed-on: https://gerrit.libreoffice.org/40912 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Szymon Kłos <szymon.klos@collabora.com> (cherry picked from commit 2b562f7531d097def1cf312f13df2fe9e9789ebe) Reviewed-on: https://gerrit.libreoffice.org/40917 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r--filter/source/msfilter/msdffimp.cxx2
-rwxr-xr-xsw/qa/extras/ww8export/data/tdf111480.docbin0 -> 27648 bytes
-rw-r--r--sw/qa/extras/ww8export/ww8export2.cxx9
3 files changed, 10 insertions, 1 deletions
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index 207a9012a45c..6e92dfe58c56 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -4416,7 +4416,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
--- /dev/null
+++ b/sw/qa/extras/ww8export/data/tdf111480.doc
Binary files differ
diff --git a/sw/qa/extras/ww8export/ww8export2.cxx b/sw/qa/extras/ww8export/ww8export2.cxx
index 6aba024fcb15..4df5bc985212 100644
--- a/sw/qa/extras/ww8export/ww8export2.cxx
+++ b/sw/qa/extras/ww8export/ww8export2.cxx
@@ -111,6 +111,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: */