Skip to content
Snippets Groups Projects
Commit 2975146b authored by Elliot Oram's avatar Elliot Oram
Browse files

Ensured use of the error possiblity from the batch runner

Refs #13636
parent de245acd
No related branches found
No related tags found
No related merge requests found
......@@ -298,6 +298,9 @@ void ConvFit::algorithmComplete(bool error) {
disconnect(m_batchAlgoRunner, SIGNAL(batchComplete(bool)), this,
SLOT(algorithmComplete(bool)));
if (error)
return;
std::string resultName = m_baseName.toStdString() + "_Result";
MatrixWorkspace_sptr resultWs =
AnalysisDataService::Instance().retrieveWS<MatrixWorkspace>(resultName);
......
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