From b3e1495f7a626bb4429ff5e4f3ad39ae9654f23b Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 17 Oct 2008 05:46:40 +0000 Subject: [FIX] Moved Hat, Fraction, Matrix, and Script to sigcore git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@281 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- sigmod/Nature.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sigmod/Nature.cpp') diff --git a/sigmod/Nature.cpp b/sigmod/Nature.cpp index add4a764..5df36bc3 100644 --- a/sigmod/Nature.cpp +++ b/sigmod/Nature.cpp @@ -86,7 +86,7 @@ void Sigmod::Nature::setName(const QString& name) CHECK(name); } -void Sigmod::Nature::setStat(const Stat stat, const Fraction& multiplier) +void Sigmod::Nature::setStat(const Stat stat, const Sigcore::Fraction& multiplier) { switch (stat) { @@ -114,7 +114,7 @@ QString Sigmod::Nature::name() const return m_name; } -Sigmod::Fraction Sigmod::Nature::stat(const Stat stat) const +Sigcore::Fraction Sigmod::Nature::stat(const Stat stat) const { switch (stat) { @@ -124,7 +124,7 @@ Sigmod::Fraction Sigmod::Nature::stat(const Stat stat) const return m_stat[stat - ST_Attack]; default: emit(warning(bounds("stat"))); - return Fraction(); + return Sigcore::Fraction(); } } -- cgit