changed erronuous classname() to className()

This commit is contained in:
mac 2000-03-30 09:43:21 +00:00
commit 5467df160c
2 changed files with 2 additions and 2 deletions

View file

@ -101,7 +101,7 @@ template<class Chrom> class eoBreeder: public eoMonPopOp<Chrom>
};
/// The class name.
string classname() const { return "eoBreeder"; }
string className() const { return "eoBreeder"; }
private:
eoOpSelector<Chrom>& opSel;

View file

@ -45,7 +45,7 @@ class eoGOpBreeder: public eoMonPopOp<EOT>
}
/// The class name.
string classname() const { return "eoGOpBreeder"; }
string className() const { return "eoGOpBreeder"; }
private:
eoGOpSelector<EOT>& opSel;