Changeset 534 for cpp/frams/vm/classes
- Timestamp:
- 07/20/16 01:17:14 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/classes/genoobj.cpp
r526 r534 53 53 void GenoObj::get_genotype(ExtValue *ret) 54 54 { 55 ret->setString(getGene ());55 ret->setString(getGenes()); 56 56 } 57 57 … … 80 80 void GenoObj::get_string(ExtValue *ret) 81 81 { 82 ret->setString(getGene AndFormat());82 ret->setString(getGenesAndFormat()); 83 83 } 84 84 … … 97 97 void GenoObj::get_f0genotype(ExtValue *ret) 98 98 { 99 ret->setString(getConverted('0').getGene ());99 ret->setString(getConverted('0').getGenes()); 100 100 } 101 101 … … 178 178 { 179 179 VectorObject *vec = new VectorObject; 180 vec->data += new ExtValue(getGene AndFormat());180 vec->data += new ExtValue(getGenesAndFormat()); 181 181 vec->data += new ExtValue(getName()); 182 182 vec->data += new ExtValue(getComment());
Note: See TracChangeset
for help on using the changeset viewer.