Skip to content

Commit

Permalink
refs #7541. Change collection type.
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenArnold committed Sep 2, 2013
1 parent 5de5a75 commit 33ee208
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/MantidQt/API/src/AlgorithmPropertiesWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "MantidAPI/FrameworkManager.h"
#include "MantidAPI/Algorithm.h"
#include "MantidAPI/AlgorithmProxy.h"
#include <list>
#include <vector>
#include <algorithm>

using namespace Mantid::Kernel;
Expand Down Expand Up @@ -320,7 +320,7 @@ namespace API
{
if (m_propWidgets.contains(propName))
{
typedef std::list<PropertyWidget*> CollectionOfPropertyWidget;
typedef std::vector<PropertyWidget*> CollectionOfPropertyWidget;
CollectionOfPropertyWidget candidateReplacementSources;
PropertyWidget * propWidget = m_propWidgets[propName];
if (propWidget)
Expand Down

0 comments on commit 33ee208

Please sign in to comment.