summaryrefslogtreecommitdiffstats
path: root/pokemodr/PokeModr.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-04-27 17:57:32 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-04-27 17:57:32 +0000
commit0fa52c1f61c457c9b68bec53bcce3af858e5eb44 (patch)
treec5b10b77a01b417775097476029bcf67fac79975 /pokemodr/PokeModr.cpp
parent807071d35159de0660f9df31c48d5bf895ca3622 (diff)
[FIX] More header cleanliness
[FIX] UI classes now just use the ObjectUI pointers [FIX] Some miscellaneous qmake options git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@112 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemodr/PokeModr.cpp')
-rw-r--r--pokemodr/PokeModr.cpp24
1 files changed, 15 insertions, 9 deletions
diff --git a/pokemodr/PokeModr.cpp b/pokemodr/PokeModr.cpp
index 5b9e31fc..27a4fdb4 100644
--- a/pokemodr/PokeModr.cpp
+++ b/pokemodr/PokeModr.cpp
@@ -15,20 +15,26 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <kaboutdata.h>
-#include <kapplication.h>
-#include <kcmdlineargs.h>
-#include <kconfig.h>
-#include <kconfiggroup.h>
+// Header include
+#include "PokeModr.h"
-#include <QTextCodec>
+// PokeModr includes
+#include "FileDialog.h"
+#include "PokeModrUI.h"
+// General includes
#include "../general/BugCatcher.h"
#include "../general/Exception.h"
-#include "FileDialog.h"
-#include "PokeModrUI.h"
-#include "PokeModr.h"
+// Qt includes
+#include <QTextCodec>
+
+// KDE includes
+#include <kaboutdata.h>
+#include <kapplication.h>
+#include <kcmdlineargs.h>
+#include <kconfig.h>
+#include <kconfiggroup.h>
int main(int argc, char* argv[])
{