Fix build.

Use raw pointers instead of QPointer in signals.
This commit is contained in:
Roman Telezhynskyi 2020-10-21 16:23:26 +03:00
parent 67db501da1
commit 7a28cbb14a

View file

@ -2267,7 +2267,7 @@ void MainWindow::ToolBarOption()
doubleSpinBoxScale->setDecimals(1); doubleSpinBoxScale->setDecimals(1);
doubleSpinBoxScale->setSuffix("%"); doubleSpinBoxScale->setSuffix("%");
ScaleChanged(ui->view->transform().m11()); ScaleChanged(ui->view->transform().m11());
connect(doubleSpinBoxScale, QOverload<double>::of(&QDoubleSpinBox::valueChanged), connect(doubleSpinBoxScale.data(), QOverload<double>::of(&QDoubleSpinBox::valueChanged),
this, [this](double d){ui->view->Zoom(d/100.0);}); this, [this](double d){ui->view->Zoom(d/100.0);});
ui->toolBarOption->addWidget(doubleSpinBoxScale); ui->toolBarOption->addWidget(doubleSpinBoxScale);
@ -3987,19 +3987,19 @@ void MainWindow::InitDimensionControls()
if (not dimensionA.isNull()) if (not dimensionA.isNull())
{ {
connect(dimensionA, QOverload<int>::of(&QComboBox::currentIndexChanged), connect(dimensionA.data(), QOverload<int>::of(&QComboBox::currentIndexChanged),
this, &MainWindow::DimensionABaseChanged); this, &MainWindow::DimensionABaseChanged);
} }
if (not dimensionB.isNull()) if (not dimensionB.isNull())
{ {
connect(dimensionB, QOverload<int>::of(&QComboBox::currentIndexChanged), connect(dimensionB.data(), QOverload<int>::of(&QComboBox::currentIndexChanged),
this, &MainWindow::DimensionBBaseChanged); this, &MainWindow::DimensionBBaseChanged);
} }
if (not dimensionC.isNull()) if (not dimensionC.isNull())
{ {
connect(dimensionC, QOverload<int>::of(&QComboBox::currentIndexChanged), connect(dimensionC.data(), QOverload<int>::of(&QComboBox::currentIndexChanged),
this, &MainWindow::DimensionCBaseChanged); this, &MainWindow::DimensionCBaseChanged);
} }