Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ManipulateAtomsProcess.cpp

    r112b09 r047878  
    2727{}
    2828
     29Dialog* ManipulateAtomsProcess::fillDialog(Dialog *dialog){
     30  ASSERT(dialog,"No Dialog given when filling action dialog");
     31  return dialog;
     32}
     33
    2934Action::state_ptr ManipulateAtomsProcess::performCall(){
    3035  World::getInstance().doManipulate(this);
     
    5358  setMaxSteps(world->numAtoms());
    5459  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
    5665    setCurrStep(iter.getCount());
    5766    operation(*iter);
Note: See TracChangeset for help on using the changeset viewer.