Skip to content
Snippets Groups Projects
Commit 3871735e authored by Anton Piccardo-Selg's avatar Anton Piccardo-Selg
Browse files

Refs #16129 Fix qt 3 support warnings for MultiSliceViewer.cpp

parent 12ca5164
No related branches found
No related tags found
No related merge requests found
......@@ -236,7 +236,7 @@ void MultiSliceView::showCutInSliceViewer(int axisIndex,
}
std::vector<double> scaling = vtkSMPropertyHelper(src2->getProxy(),
scalingProperty,
scalingProperty.toAscii().constData(),
true).GetDoubleArray();
if (!scaling.empty())
......@@ -275,9 +275,9 @@ void MultiSliceView::showCutInSliceViewer(int axisIndex,
}
catch (std::runtime_error & e)
{
QString message = "The slice could not be shown because of the following error:\n" + QString(e.what());
QMessageBox::warning(this, tr("MantidPlot"),
tr("The slice could not be shown because of the following error:\n"
+ QString(e.what())),
tr(message.toAscii().constData()),
QMessageBox::Ok, QMessageBox::Ok);
delete w;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment