Skip to content

Commit

Permalink
Correct Python execution slot name in IDA and Bayes
Browse files Browse the repository at this point in the history
Refs #10368
  • Loading branch information
DanNixon committed Nov 12, 2014
1 parent 45f2acf commit 7cc01ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -37,7 +37,7 @@ IndirectBayes::IndirectBayes(QWidget *parent) : UserSubWindow(parent),
std::map<unsigned int, IndirectBayesTab*>::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&)));
}

Expand Down
Expand Up @@ -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&)));
}

Expand Down

0 comments on commit 7cc01ba

Please sign in to comment.