diff options
author | Ben Boeckel <MathStuf@gmail.com> | 2008-02-22 01:39:13 +0000 |
---|---|---|
committer | Ben Boeckel <MathStuf@gmail.com> | 2008-02-22 01:39:13 +0000 |
commit | 8082fda92a86b34a37fe386266efbde5e30bca16 (patch) | |
tree | 85713a913062b8c851de806e2ad0fe26adaa7e03 /pokemodr/StoreUI.cpp | |
parent | 88b11f136c7a4b287ac44e3ec8e671cf17ab8319 (diff) | |
download | sigen-8082fda92a86b34a37fe386266efbde5e30bca16.tar.gz sigen-8082fda92a86b34a37fe386266efbde5e30bca16.tar.xz sigen-8082fda92a86b34a37fe386266efbde5e30bca16.zip |
[FIX] Frac now makes sure that the denominator is positive
[FIX] Sprite-containing classes less repetative with determining paths
[FIX] More include cleanup in pokemodr
[FIX] Precision of Frac decimal equivalents now use a define
[FIX] Species UI form is now more compact and complete
[ADD] SpeciesUI.{h, cpp} (again; wasn't actually included last time and got lost)
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@68 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemodr/StoreUI.cpp')
-rw-r--r-- | pokemodr/StoreUI.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/pokemodr/StoreUI.cpp b/pokemodr/StoreUI.cpp index ae92f24e..c6166324 100644 --- a/pokemodr/StoreUI.cpp +++ b/pokemodr/StoreUI.cpp @@ -23,11 +23,14 @@ #include <QListWidgetItem> #include <QMetaObject> #include <QVariant> -#include "../general/BugCatcher.h" -#include "../general/Exception.h" -#include "../pokemod/Item.h" -#include "../pokemod/Pokemod.h" -#include "../pokemod/Store.h" + +#include <BugCatcher.h> +#include <Exception.h> + +#include <Item.h> +#include <Pokemod.h> +#include <Store.h> + #include "StoreUI.h" StoreUI::StoreUI(Store* s, QWidget* parent) : |