Skip to content

Commit

Permalink
Merge pull request #18955 from mantidproject/18951_fix_crash_in_Monit…
Browse files Browse the repository at this point in the history
…orDlg

Fix crash in MonitorDlg
  • Loading branch information
peterfpeterson committed Feb 23, 2017
2 parents 86eff8f + f75d92b commit bb09b60
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MantidPlot/src/Mantid/AlgorithmMonitor.cpp
Expand Up @@ -206,6 +206,9 @@ void MonitorDlg::update() {
itr != iend; ++itr) {
IAlgorithm_sptr alg =
Mantid::API::AlgorithmManager::Instance().getAlgorithm(*itr);
if (!alg) {
continue;
}
// m_algorithms << alg;
QStringList iList;
iList << QString::fromStdString(alg->name());
Expand Down

0 comments on commit bb09b60

Please sign in to comment.