From 7cc01ba53e9381b0d5fbebf087da645d3d3badb9 Mon Sep 17 00:00:00 2001 From: Dan Nixon Date: Wed, 12 Nov 2014 15:17:29 +0000 Subject: [PATCH] Correct Python execution slot name in IDA and Bayes Refs #10368 --- Code/Mantid/MantidQt/CustomInterfaces/src/IndirectBayes.cpp | 2 +- .../MantidQt/CustomInterfaces/src/IndirectDataAnalysis.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectBayes.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectBayes.cpp index d1ace72f67a6..49db0e54f64a 100644 --- a/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectBayes.cpp +++ b/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectBayes.cpp @@ -37,7 +37,7 @@ IndirectBayes::IndirectBayes(QWidget *parent) : UserSubWindow(parent), std::map::iterator iter; for (iter = m_bayesTabs.begin(); iter != m_bayesTabs.end(); ++iter) { - connect(iter->second, SIGNAL(executePythonScript(const QString&, bool)), this, SIGNAL(runAsPythonScript(const QString&, bool))); + connect(iter->second, SIGNAL(runAsPythonScript(const QString&, bool)), this, SIGNAL(runAsPythonScript(const QString&, bool))); connect(iter->second, SIGNAL(showMessageBox(const QString&)), this, SLOT(showMessageBox(const QString&))); } diff --git a/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectDataAnalysis.cpp b/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectDataAnalysis.cpp index 8d7116da001b..a8d6539f0255 100644 --- a/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectDataAnalysis.cpp +++ b/Code/Mantid/MantidQt/CustomInterfaces/src/IndirectDataAnalysis.cpp @@ -88,7 +88,7 @@ namespace IDA for(auto tab = m_tabs.begin(); tab != m_tabs.end(); ++tab) { tab->second->setupTab(); - connect(tab->second, SIGNAL(executePythonScript(const QString&, bool)), this, SIGNAL(runAsPythonScript(const QString&, bool))); + connect(tab->second, SIGNAL(runAsPythonScript(const QString&, bool)), this, SIGNAL(runAsPythonScript(const QString&, bool))); connect(tab->second, SIGNAL(showMessageBox(const QString&)), this, SLOT(showMessageBox(const QString&))); }