diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2019-12-05 21:24:54 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-12-05 21:25:54 +0100 |
commit | 20e5399cfecaa7ed825b399018ba7f655e58d54e (patch) | |
tree | a30f3c43a513f9ecefc5dfb4dbcb7d2275b4754b | |
parent | 86f148afbb8b476d22f92632c619f1b94f0b2102 (diff) |
Fix refs to tdf#124029
Change-Id: I451d9c1abbe0c03a3a55b3cc153ba2852a1bbc26
Reviewed-on: https://gerrit.libreoffice.org/84584
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | filter/source/msfilter/msdffimp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx index 27b87f1bf4ef..01827da5bc14 100644 --- a/filter/source/msfilter/msdffimp.cxx +++ b/filter/source/msfilter/msdffimp.cxx @@ -4590,7 +4590,7 @@ SdrObject* SvxMSDffManager::ImportShape( const DffRecordHeader& rHd, SvStream& r } // mso_sptArc special treating - // tdf#124026: A new custom shape is generated from prototype 'msoArc'. Values, which are + // tdf#124029: A new custom shape is generated from prototype 'msoArc'. Values, which are // read here, are adapted and merged. The shape type is changed, so this code // applies only if importing arcs from MS Office. if ( aObjData.eShapeType == mso_sptArc ) @@ -4684,7 +4684,7 @@ SdrObject* SvxMSDffManager::ImportShape( const DffRecordHeader& rHd, SvStream& r // MS Office uses for mso_sptArc a frame rectangle (=resize handles) // which encloses only the sector, LibreOffice uses for custom shapes as // default a frame rectangle, which encloses the entire ellipse. That would - // result in wrong positions in Writer and Calc, see tdf#124026. + // result in wrong positions in Writer and Calc, see tdf#124029. // We workaround this problem, by setting a suitable viewBox. bool bIsImportPPT(GetSvxMSDffSettings() & SVXMSDFF_SETTINGS_IMPORT_PPT); css::awt::Rectangle aViewBox_LO; // in LO coordinate system |