Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/moleculelist.cpp

    r520c8b r2ba827  
    5050void MoleculeListClass::insert(molecule *mol)
    5151{
    52   START_OBSERVER;
     52  OBSERVE;
    5353  mol->IndexNr = MaxIndex++;
    5454  ListOfMolecules.push_back(mol);
    5555  mol->signOn(this);
    56   FINISH_OBSERVER;
    5756};
    5857
     
    892891
    893892void MoleculeListClass::createNewMolecule(periodentafel *periode) {
    894   START_OBSERVER;
     893  OBSERVE;
    895894  molecule *mol = NULL;
    896895  mol = new molecule(periode);
    897896  insert(mol);
    898   FINISH_OBSERVER;
    899897};
    900898
Note: See TracChangeset for help on using the changeset viewer.