tdf#121648 EMF+ Fix displaying DrawDriverString record

With introduing String rotation support
I made mistake by not removing Maping from DX-Array.
With this commit I'm fixing that issue.
Now drawing with DrawDriverString record,
and rotation is working perfectly.

Change-Id: I7ae051b3791d9d2d8e2143ed33d21b7bfbc551c6
Reviewed-on: https://gerrit.libreoffice.org/64079
Tested-by: Jenkins
Reviewed-by: Patrick Jaap <patrick.jaap@tu-dresden.de>
Reviewed-by: Bartosz Kosiorek <gang65@poczta.onet.pl>
This commit is contained in:
Bartosz Kosiorek 2018-11-27 01:54:28 +01:00 committed by Bartosz Kosiorek
parent d464d505fb
commit f54c76e1ef

View File

@ -1798,10 +1798,9 @@ namespace emfplushelper
// generate the DX-Array
aDXArray.clear();
double mappedPosX = Map(charsPosX[pos], charsPosY[pos]).getX();
for (size_t i = 0; i < aLength-1; i++)
for (size_t i = 0; i < aLength - 1; i++)
{
aDXArray.push_back(Map(charsPosX[pos + i + 1], charsPosY[pos + i + 1]).getX() - mappedPosX);
aDXArray.push_back(charsPosX[pos + i + 1] - charsPosX[pos]);
}
// last entry
aDXArray.push_back(0);