Changes in src/moleculelist.cpp [520c8b:2ba827]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/moleculelist.cpp
r520c8b r2ba827 50 50 void MoleculeListClass::insert(molecule *mol) 51 51 { 52 START_OBSERVER;52 OBSERVE; 53 53 mol->IndexNr = MaxIndex++; 54 54 ListOfMolecules.push_back(mol); 55 55 mol->signOn(this); 56 FINISH_OBSERVER;57 56 }; 58 57 … … 892 891 893 892 void MoleculeListClass::createNewMolecule(periodentafel *periode) { 894 START_OBSERVER;893 OBSERVE; 895 894 molecule *mol = NULL; 896 895 mol = new molecule(periode); 897 896 insert(mol); 898 FINISH_OBSERVER;899 897 }; 900 898
Note:
See TracChangeset
for help on using the changeset viewer.