Skip to content

Commit

Permalink
Remove need for algorithm runner for now
Browse files Browse the repository at this point in the history
Refs #7860
  • Loading branch information
DanNixon committed Sep 9, 2014
1 parent 58fffdb commit 7e2752f
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,8 @@ namespace CustomInterfaces
void IndirectSymmetrise::preview()
{
// Handle algorithm completion signal
connect(&m_algRunner, SIGNAL(algorithmComplete(bool)), this, SLOT(previewAlgDone(bool)));
// TODO: Temp. removal to checkbuild #10092
/* connect(&m_algRunner, SIGNAL(algorithmComplete(bool)), this, SLOT(previewAlgDone(bool))); */

// Do nothing if no data has been laoded
QString workspaceName = m_uiForm.symm_dsInput->getCurrentDataName();
Expand Down Expand Up @@ -343,7 +344,8 @@ namespace CustomInterfaces
plotMiniPlot("__Symmetrise_temp", spectrumIndex, "SymmPreviewPlot");

// Don't want this to trigger when the algorithm is run for all spectra
disconnect(&m_algRunner, SIGNAL(algorithmComplete(bool)), this, SLOT(previewAlgDone(bool)));
// TODO: Temp. removal to checkbuild #10092
/* disconnect(&m_algRunner, SIGNAL(algorithmComplete(bool)), this, SLOT(previewAlgDone(bool))); */
}

} // namespace CustomInterfaces
Expand Down

0 comments on commit 7e2752f

Please sign in to comment.