Changeset 534 for cpp/frams/vm


Ignore:
Timestamp:
07/20/16 01:17:14 (8 years ago)
Author:
Maciej Komosinski
Message:

Renamed: get/setGene -> get/setGenes, setGeneOnly -> setGenesAssumingSameFormat

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/vm/classes/genoobj.cpp

    r526 r534  
    5353void GenoObj::get_genotype(ExtValue *ret)
    5454{
    55         ret->setString(getGene());
     55        ret->setString(getGenes());
    5656}
    5757
     
    8080void GenoObj::get_string(ExtValue *ret)
    8181{
    82         ret->setString(getGeneAndFormat());
     82        ret->setString(getGenesAndFormat());
    8383}
    8484
     
    9797void GenoObj::get_f0genotype(ExtValue *ret)
    9898{
    99         ret->setString(getConverted('0').getGene());
     99        ret->setString(getConverted('0').getGenes());
    100100}
    101101
     
    178178{
    179179        VectorObject *vec = new VectorObject;
    180         vec->data += new ExtValue(getGeneAndFormat());
     180        vec->data += new ExtValue(getGenesAndFormat());
    181181        vec->data += new ExtValue(getName());
    182182        vec->data += new ExtValue(getComment());
Note: See TracChangeset for help on using the changeset viewer.