[Part] SectionCutting: remove another unused variable

strangely MSVC did not report me these, the CI does
This commit is contained in:
Uwe
2022-02-05 14:45:34 +01:00
parent e1f4fde88b
commit d938733eaf
2 changed files with 2 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ enum Refresh : bool
ZRange = true
};
SectionCut::SectionCut(Gui::View3DInventor* view, QWidget* parent)
SectionCut::SectionCut(QWidget* parent)
: QDialog(parent)
, ui(new Ui_SectionCut)
{

View File

@@ -38,7 +38,7 @@ class SectionCut : public QDialog
public:
static SectionCut* makeDockWidget(Gui::View3DInventor*);
SectionCut(Gui::View3DInventor* view, QWidget* parent = nullptr);
SectionCut(QWidget* parent = nullptr);
~SectionCut();
protected Q_SLOTS: