From cd76edd49aff6d6563effa9032425a2fab88ca16 Mon Sep 17 00:00:00 2001 From: Louise McCann <louise.mccann@stfc.ac.uk> Date: Mon, 12 Sep 2016 10:11:55 +0100 Subject: [PATCH] Applied clang format patch Refs #17255 --- .../CustomInterfaces/src/Indirect/ISISEnergyTransfer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MantidQt/CustomInterfaces/src/Indirect/ISISEnergyTransfer.cpp b/MantidQt/CustomInterfaces/src/Indirect/ISISEnergyTransfer.cpp index 910d306187f..6897dc29bac 100644 --- a/MantidQt/CustomInterfaces/src/Indirect/ISISEnergyTransfer.cpp +++ b/MantidQt/CustomInterfaces/src/Indirect/ISISEnergyTransfer.cpp @@ -691,7 +691,7 @@ void ISISEnergyTransfer::pbRunFinished() { * Handle mantid plotting of workspaces */ void ISISEnergyTransfer::plotClicked() { - for (const auto & it : m_outputWorkspaces) { + for (const auto &it : m_outputWorkspaces) { if (checkADSForPlotSaveWorkspace(it, true)) { const auto plotType = m_uiForm.cbPlotType->currentText(); QString pyInput = "from IndirectReductionCommon import plot_reduction\n"; @@ -710,11 +710,11 @@ void ISISEnergyTransfer::saveClicked() { auto saveFormats = getSaveFormats(); QString pyInput = "from IndirectReductionCommon import save_reduction\n"; pyInput += "save_reduction(["; - for (const auto & it : m_outputWorkspaces) { + for (const auto &it : m_outputWorkspaces) { pyInput += "'" + QString::fromStdString(it) + "', "; } pyInput += "], ["; - for (const auto & it : saveFormats) { + for (const auto &it : saveFormats) { pyInput += "'" + QString::fromStdString(it) + "', "; } pyInput += "]"; -- GitLab