summaryrefslogtreecommitdiffstats
path: root/pokemod/Move.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-04-20 00:12:12 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-04-20 00:12:12 +0000
commitdcb77408505e5fb40f064dd05aaf39f27dcdd524 (patch)
treec9de6f2a58d754511b7c821db58f8c0e881a0e1f /pokemod/Move.h
parentf4f3176a6dcdaf5e463f39a657dd4ca04386a6ad (diff)
downloadsigen-dcb77408505e5fb40f064dd05aaf39f27dcdd524.tar.gz
sigen-dcb77408505e5fb40f064dd05aaf39f27dcdd524.tar.xz
sigen-dcb77408505e5fb40f064dd05aaf39f27dcdd524.zip
[FIX] Fraction bounds checking
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@102 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemod/Move.h')
-rw-r--r--pokemod/Move.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pokemod/Move.h b/pokemod/Move.h
index 280b7eca..3649ef6f 100644
--- a/pokemod/Move.h
+++ b/pokemod/Move.h
@@ -66,7 +66,7 @@ class Move : public Object
QDomElement save() const;
void setName(const QString& name);
- void setAccuracy(const Fraction& accuracy) throw(Exception);
+ void setAccuracy(const Fraction& accuracy) throw(BoundsException);
void setPower(const int power);
void setType(const int type) throw(BoundsException);
void setSpecial(const bool special);