summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-02-23 14:05:55 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-02-23 14:05:55 -0500
commit312367cefdf19b35b423cce9d15e937f02f71ac7 (patch)
tree2332fcb0872270c0b0f337268ce105e8bbd30881
parent91fe2fa3fb88af4082b203a3bee74e234b948694 (diff)
downloadsigen-312367cefdf19b35b423cce9d15e937f02f71ac7.tar.gz
sigen-312367cefdf19b35b423cce9d15e937f02f71ac7.tar.xz
sigen-312367cefdf19b35b423cce9d15e937f02f71ac7.zip
Fixed includes from sigcore/Global.h
-rw-r--r--sigcore/Global.h6
-rw-r--r--sigcore/Range.h5
-rw-r--r--sigcore/Script.h3
-rw-r--r--sigmod/Object.h3
4 files changed, 9 insertions, 8 deletions
diff --git a/sigcore/Global.h b/sigcore/Global.h
index 0d0ca573..589aaabc 100644
--- a/sigcore/Global.h
+++ b/sigcore/Global.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -22,10 +22,6 @@
#ifndef SIGCORE_GLOBAL
#define SIGCORE_GLOBAL
-// Qt includes
-#include <QtCore/QMetaType>
-#include <QtCore/QStringList>
-
// KDE includes
#include <kdemacros.h>
diff --git a/sigcore/Range.h b/sigcore/Range.h
index d3dea3a5..c38be2af 100644
--- a/sigcore/Range.h
+++ b/sigcore/Range.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -25,6 +25,9 @@
// Sigcore includes
#include "Global.h"
+// Qt includes
+#include <QtCore/QMetaType>
+
namespace Sigcore
{
/**
diff --git a/sigcore/Script.h b/sigcore/Script.h
index 6a12725e..7b5a3a8a 100644
--- a/sigcore/Script.h
+++ b/sigcore/Script.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2008-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -26,6 +26,7 @@
#include "Global.h"
// Qt includes
+#include <QtCore/QMetaType>
#include <QtCore/QString>
namespace Sigcore
diff --git a/sigmod/Object.h b/sigmod/Object.h
index 7340a16a..5f334272 100644
--- a/sigmod/Object.h
+++ b/sigmod/Object.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2007-2008 Ben Boeckel <MathStuf@gmail.com>
+ * Copyright 2007-2009 Ben Boeckel <MathStuf@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -35,6 +35,7 @@
#include <QtCore/QObject>
#include <QtCore/QPoint>
#include <QtCore/QRect>
+#include <QtCore/QStringList>
#include <QtCore/QVariant>
#include <QtCore/QVarLengthArray>
#include <QtXml/QDomElement>