Skip to content

Commit

Permalink
Do not clear the observer list
Browse files Browse the repository at this point in the history
Refs #10377
  • Loading branch information
DanNixon committed Nov 10, 2014
1 parent 3b77c10 commit e253d3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/API/src/AlgorithmProxy.cpp
Expand Up @@ -287,7 +287,7 @@ namespace Mantid
std::vector<const Poco::AbstractObserver*>::reverse_iterator o = m_externalObservers.rbegin();
for(;o != m_externalObservers.rend();++o)
m_alg->addObserver(**o);
/* m_externalObservers.clear(); */
m_externalObservers.clear();
}

///setting the child start progress
Expand Down

0 comments on commit e253d3d

Please sign in to comment.