diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2008-04-27 15:15:17 +0000 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2008-04-27 15:15:17 +0000 |
| commit | 807071d35159de0660f9df31c48d5bf895ca3622 (patch) | |
| tree | a1e9dbdc1e58b91cd2e4a5e472597b0204ccb41d /pokemodr/PokeModrUI.cpp | |
| parent | f444f5a45e9325644a360f656176d47d7f540f52 (diff) | |
[FIX] Pokemod objects now know about parents
[FIX] Project includes are now relative
[FIX] Headers included for better detection of invalid headers
[FIX] Validation code commented out so it can be done better
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@111 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemodr/PokeModrUI.cpp')
| -rw-r--r-- | pokemodr/PokeModrUI.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/pokemodr/PokeModrUI.cpp b/pokemodr/PokeModrUI.cpp index 6c544cce..04b4b4b4 100644 --- a/pokemodr/PokeModrUI.cpp +++ b/pokemodr/PokeModrUI.cpp @@ -15,6 +15,24 @@ * with this program. If not, see <http://www.gnu.org/licenses/>. */ +// Header include +#include "PokeModrUI.h" + +// PokeModr includes +#include "PokemodTreeModel.h" + +// Pokemod includes +#include "../pokemod/Pokemod.h" + +// General includes +#include "../general/BugCatcher.h" +#include "../general/Exception.h" + +// Qt includes +#include <QCloseEvent> +#include <QMutableListIterator> +#include <QString> + // KDE includes #include <kaction.h> #include <kfiledialog.h> @@ -28,24 +46,6 @@ #include <ktoolbar.h> #include <kurl.h> -// Qt includes -#include <QCloseEvent> -#include <QMutableListIterator> -#include <QString> - -// General includes -#include <BugCatcher.h> -#include <Exception.h> - -// Pokemod includes -#include <Pokemod.h> - -// PokeModr includes -#include "PokemodTreeModel.h" - -// Header include -#include "PokeModrUI.h" - // STL includes #include <iostream> |
