diff --git a/qt/scientific_interfaces/ISISReflectometry/GUI/Batch/BatchPresenter.cpp b/qt/scientific_interfaces/ISISReflectometry/GUI/Batch/BatchPresenter.cpp index 13e263dbececbb09d64a12548023751a9b01a186..3ec411444dce088d0a770d7754028429c31df37d 100644 --- a/qt/scientific_interfaces/ISISReflectometry/GUI/Batch/BatchPresenter.cpp +++ b/qt/scientific_interfaces/ISISReflectometry/GUI/Batch/BatchPresenter.cpp @@ -245,7 +245,7 @@ void BatchPresenter::autoreductionPaused() { m_instrumentPresenter->autoreductionPaused(); m_runsPresenter->autoreductionPaused(); - m_mainPresenter->notifyAutoreductionResumed(); + m_mainPresenter->notifyAutoreductionPaused(); } void BatchPresenter::autoreductionCompleted() { diff --git a/qt/scientific_interfaces/ISISReflectometry/GUI/MainWindow/MainWindowPresenter.cpp b/qt/scientific_interfaces/ISISReflectometry/GUI/MainWindow/MainWindowPresenter.cpp index f1315a347f43707444e0a0e6cd53e414e593ff32..3347c56deaed6a0b2e58539ec32035dc8f70360d 100644 --- a/qt/scientific_interfaces/ISISReflectometry/GUI/MainWindow/MainWindowPresenter.cpp +++ b/qt/scientific_interfaces/ISISReflectometry/GUI/MainWindow/MainWindowPresenter.cpp @@ -61,7 +61,7 @@ void MainWindowPresenter::notifyAutoreductionResumed() { void MainWindowPresenter::notifyAutoreductionPaused() { for (auto &batchPresenter : m_batchPresenters) { - batchPresenter->anyBatchAutoreductionResumed(); + batchPresenter->anyBatchAutoreductionPaused(); } }