- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ManipulateAtomsProcess.cpp
r112b09 r047878 27 27 {} 28 28 29 Dialog* ManipulateAtomsProcess::fillDialog(Dialog *dialog){ 30 ASSERT(dialog,"No Dialog given when filling action dialog"); 31 return dialog; 32 } 33 29 34 Action::state_ptr ManipulateAtomsProcess::performCall(){ 30 35 World::getInstance().doManipulate(this); … … 53 58 setMaxSteps(world->numAtoms()); 54 59 start(); 55 for(World::AtomIterator iter=world->getAtomIter(descr);iter!=world->atomEnd();++iter){ 60 for(World::internal_AtomIterator 61 iter=world->getAtomIter_internal(descr); 62 iter!=world->atomEnd_internal(); 63 ++iter){ 64 56 65 setCurrStep(iter.getCount()); 57 66 operation(*iter);
Note:
See TracChangeset
for help on using the changeset viewer.