From fe31331e2807634ae659e372358bac5781de9130 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 19 Apr 2008 18:12:17 +0000 Subject: [FIX] IndexException is more explicit [FIX] Added SizeException for image validation [FIX] QPixmaps are now verified [FIX] Classes now use error and warning rather than throwing [FIX] Deleted Object.cpp git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@100 6ecfd1a5-f3ed-3746-8530-beee90d26b22 --- pokemod/Store.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pokemod/Store.cpp') diff --git a/pokemod/Store.cpp b/pokemod/Store.cpp index a3f6e37a..1edbca32 100644 --- a/pokemod/Store.cpp +++ b/pokemod/Store.cpp @@ -98,7 +98,7 @@ void Store::setName(const QString& name) void Store::setItem(const int item, const bool state) throw(BoundsException) { if (pokemod()->itemIndex(item) == INT_MAX) - throw(BoundsException(className(), "item")); + error("item"); if (state) { if (!m_items.contains(item)) -- cgit