From 8980adda6f03dec601d302ea662fd60d0a741f06 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Sat, 15 Jul 2023 14:42:17 +0300 Subject: [PATCH] Fix build. --- src/libs/vhpgl/vhpglengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } }