From 3df86553f855d28aa68153a126b30dc4c8ac7dcd Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 27 Nov 2022 16:51:15 +0100 Subject: [PATCH] TD: [skip ci] fix warnings reported by GH actions --- src/Mod/TechDraw/App/DrawComplexSection.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Mod/TechDraw/App/DrawComplexSection.cpp b/src/Mod/TechDraw/App/DrawComplexSection.cpp index e2241889d0..cc3de3c2ec 100644 --- a/src/Mod/TechDraw/App/DrawComplexSection.cpp +++ b/src/Mod/TechDraw/App/DrawComplexSection.cpp @@ -133,7 +133,6 @@ const char *DrawComplexSection::ProjectionStrategyEnums[] = {"Offset", "Aligned" nullptr}; DrawComplexSection::DrawComplexSection() - : m_toolFaceShape(TopoDS_Shape()) { static const char *fgroup = "Cutting Tool"; @@ -256,7 +255,7 @@ TopoDS_Shape DrawComplexSection::getShapeToPrepare() const //get the shape ready for projection and cut surface finding TopoDS_Shape DrawComplexSection::prepareShape(const TopoDS_Shape &cutShape, double shapeSize) { -// Base::Console().Message("DCS::prepareShape() - strat: %d\n", ProjectionStrategy.getValue()); +// Base::Console().Message("DCS::prepareShape() - strategy: %d\n", ProjectionStrategy.getValue()); if (ProjectionStrategy.getValue() == 0) { //Offset. Use regular section behaviour return DrawViewSection::prepareShape(cutShape, shapeSize);