Skip to content

Commit

Permalink
Fix diagnostics for multiple runs
Browse files Browse the repository at this point in the history
Refs #10492
  • Loading branch information
DanNixon committed Nov 14, 2014
1 parent 5d9651c commit 834dc38
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -136,7 +136,7 @@ namespace CustomInterfaces
void IndirectDiagnostics::run()
{
QString suffix = "_" + m_uiForm.cbAnalyser->currentText() + m_uiForm.cbReflection->currentText() + "_slice";
QString filenames = m_uiForm.slice_inputFile->getFilenames().join("', r'");
QString filenames = m_uiForm.slice_inputFile->getFilenames().join(",");

std::vector<long> spectraRange;
spectraRange.push_back(static_cast<long>(m_dblManager->value(m_properties["SpecMin"])));
Expand Down Expand Up @@ -351,7 +351,7 @@ namespace CustomInterfaces
void IndirectDiagnostics::updatePreviewPlot()
{
QString suffix = "_" + m_uiForm.cbAnalyser->currentText() + m_uiForm.cbReflection->currentText() + "_slice";
QString filenames = m_uiForm.slice_inputFile->getFilenames().join("', r'");
QString filenames = m_uiForm.slice_inputFile->getFilenames().join(",");

std::vector<long> spectraRange;
spectraRange.push_back(static_cast<long>(m_dblManager->value(m_properties["SpecMin"])));
Expand Down

0 comments on commit 834dc38

Please sign in to comment.