diff --git a/src/libs/vhpgl/vhpglengine.cpp b/src/libs/vhpgl/vhpglengine.cpp index ff80b738d..9f8c1be03 100644 --- a/src/libs/vhpgl/vhpglengine.cpp +++ b/src/libs/vhpgl/vhpglengine.cpp @@ -517,7 +517,7 @@ void VHPGLEngine::PlotInternalPaths(QTextStream &out, const VLayoutPiece &detail QVector internalPaths = detail.GetInternalPaths(); for (const auto &path : internalPaths) { - QVector points = VLayoutPiece::Map(path.Points(), detail.GetMatrix(), detail.IsMirror()); + QVector points = VLayoutPiece::MapVector(path.Points(), detail.GetMatrix(), detail.IsMirror()); PlotPath(out, CastToPoint(ConvertPath(points)), path.PenStyle()); } }