From cc68126a488501b026af12494123def9b3148958 Mon Sep 17 00:00:00 2001 From: Leonardo Zide Date: Mon, 1 Jun 2020 12:29:30 -0700 Subject: [PATCH] gcc fix. --- common/lc_instructionsdialog.h | 3 ++- common/lc_model.cpp | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/common/lc_instructionsdialog.h b/common/lc_instructionsdialog.h index 72c07985..07f141b7 100644 --- a/common/lc_instructionsdialog.h +++ b/common/lc_instructionsdialog.h @@ -1,6 +1,7 @@ #pragma once -struct lcInstructionsPageLayout; +//struct lcInstructionsPageLayout; +#include "lc_model.h" class lcInstructionsPageWidget : public QGraphicsView { diff --git a/common/lc_model.cpp b/common/lc_model.cpp index 1a78895b..b3c1976f 100644 --- a/common/lc_model.cpp +++ b/common/lc_model.cpp @@ -3020,6 +3020,9 @@ void lcModel::TransformSelectedObjects(lcTransformType TransformType, const lcVe case lcTransformType::RelativeRotation: RotateSelectedPieces(Transform, true, false, true, true); break; + + case lcTransformType::Count: + break; } }