Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/moleculelist.cpp

    r2ba827 r520c8b  
    5050void MoleculeListClass::insert(molecule *mol)
    5151{
    52   OBSERVE;
     52  START_OBSERVER;
    5353  mol->IndexNr = MaxIndex++;
    5454  ListOfMolecules.push_back(mol);
    5555  mol->signOn(this);
     56  FINISH_OBSERVER;
    5657};
    5758
     
    891892
    892893void MoleculeListClass::createNewMolecule(periodentafel *periode) {
    893   OBSERVE;
     894  START_OBSERVER;
    894895  molecule *mol = NULL;
    895896  mol = new molecule(periode);
    896897  insert(mol);
     898  FINISH_OBSERVER;
    897899};
    898900
Note: See TracChangeset for help on using the changeset viewer.