COMMIT: changed BOOST_FOREACH to for.
This commit is contained in:
parent
9861b35707
commit
0223425d30
|
@ -25,7 +25,6 @@
|
||||||
#include <commit.h>
|
#include <commit.h>
|
||||||
#include <class_undoredo_container.h>
|
#include <class_undoredo_container.h>
|
||||||
|
|
||||||
#include <boost/foreach.hpp>
|
|
||||||
|
|
||||||
COMMIT::COMMIT()
|
COMMIT::COMMIT()
|
||||||
{
|
{
|
||||||
|
@ -37,7 +36,7 @@ COMMIT::~COMMIT()
|
||||||
{
|
{
|
||||||
if( !m_committed )
|
if( !m_committed )
|
||||||
{
|
{
|
||||||
BOOST_FOREACH( COMMIT_LINE& ent, m_changes )
|
for( COMMIT_LINE& ent : m_changes )
|
||||||
{
|
{
|
||||||
if( ent.m_copy )
|
if( ent.m_copy )
|
||||||
delete ent.m_copy;
|
delete ent.m_copy;
|
||||||
|
@ -89,6 +88,17 @@ COMMIT& COMMIT::Stage( EDA_ITEM* aItem, CHANGE_TYPE aChangeType )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
COMMIT& COMMIT::Stage( std::vector<EDA_ITEM*>& container, CHANGE_TYPE aChangeType )
|
||||||
|
{
|
||||||
|
for( EDA_ITEM* item : container )
|
||||||
|
{
|
||||||
|
Stage( item, aChangeType );
|
||||||
|
}
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void COMMIT::Stage( const PICKED_ITEMS_LIST& aItems, CHANGE_TYPE aChangeType )
|
void COMMIT::Stage( const PICKED_ITEMS_LIST& aItems, CHANGE_TYPE aChangeType )
|
||||||
{
|
{
|
||||||
for( unsigned int i = 0; i < aItems.GetCount(); i++ )
|
for( unsigned int i = 0; i < aItems.GetCount(); i++ )
|
||||||
|
|
|
@ -29,7 +29,6 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <base_struct.h>
|
#include <base_struct.h>
|
||||||
|
|
||||||
#include <boost/foreach.hpp>
|
|
||||||
|
|
||||||
class PICKED_ITEMS_LIST;
|
class PICKED_ITEMS_LIST;
|
||||||
|
|
||||||
|
@ -77,13 +76,6 @@ public:
|
||||||
///> Adds a change of the item aItem of type aChangeType to the change list.
|
///> Adds a change of the item aItem of type aChangeType to the change list.
|
||||||
virtual COMMIT& Stage( EDA_ITEM* aItem, CHANGE_TYPE aChangeType );
|
virtual COMMIT& Stage( EDA_ITEM* aItem, CHANGE_TYPE aChangeType );
|
||||||
|
|
||||||
void Stage( std::vector<EDA_ITEM*>& container, CHANGE_TYPE aChangeType )
|
|
||||||
{
|
|
||||||
BOOST_FOREACH( EDA_ITEM* item, container )
|
|
||||||
{
|
|
||||||
Stage( item, aChangeType );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void Stage( const PICKED_ITEMS_LIST& aItems, CHANGE_TYPE aChangeType );
|
void Stage( const PICKED_ITEMS_LIST& aItems, CHANGE_TYPE aChangeType );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue