Changed one of COMMIT::Stage() methods to COMMIT::Modified()

This commit is contained in:
Maciej Suminski
2016-09-12 13:45:57 +02:00
parent 267f01fa69
commit 6481ff75c9
2 changed files with 8 additions and 5 deletions
+3 -2
View File
@@ -3,6 +3,7 @@
*
* Copyright (C) 2016 CERN
* @author Tomasz Wlostowski <[email protected]>
* @author Maciej Suminski <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -77,7 +78,7 @@ COMMIT& COMMIT::Stage( EDA_ITEM* aItem, CHANGE_TYPE aChangeType )
}
COMMIT& COMMIT::Stage( EDA_ITEM* aItem, EDA_ITEM* aCopy )
COMMIT& COMMIT::Modified( EDA_ITEM* aItem, EDA_ITEM* aCopy )
{
EDA_ITEM* parent = parentObject( aItem );
@@ -120,7 +121,7 @@ COMMIT& COMMIT::Stage( const PICKED_ITEMS_LIST& aItems, UNDO_REDO_T aModFlag )
assert( change_type == UR_CHANGED );
// There was already a copy created, so use it
Stage( item, copy );
Modified( item, copy );
}
else
{