Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-03-14 19:06:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-03-14 19:06:43 +0300
commit431db9d478dc48bcabe9859efd320f8210b5eeda (patch)
tree7d3181fa7a9629635d09bc78542db454005c298d /source/blender/python/generic
parentb2fba2eebe84386e78d8c925d0b14d3dd5746b81 (diff)
remove unused includes
Diffstat (limited to 'source/blender/python/generic')
-rw-r--r--source/blender/python/generic/Geometry.c5
-rw-r--r--source/blender/python/generic/IDProp.c5
-rw-r--r--source/blender/python/generic/Mathutils.c2
-rw-r--r--source/blender/python/generic/bpy_internal_import.c1
-rw-r--r--source/blender/python/generic/euler.c3
-rw-r--r--source/blender/python/generic/quat.c1
6 files changed, 0 insertions, 17 deletions
diff --git a/source/blender/python/generic/Geometry.c b/source/blender/python/generic/Geometry.c
index fecad5904d2..f204fa62904 100644
--- a/source/blender/python/generic/Geometry.c
+++ b/source/blender/python/generic/Geometry.c
@@ -29,11 +29,6 @@
#include "Geometry.h"
-/* - Not needed for now though other geometry functions will probably need them
-#include "BLI_math.h"
-#include "BKE_utildefines.h"
-*/
-
/* Used for PolyFill */
#include "BKE_displist.h"
#include "MEM_guardedalloc.h"
diff --git a/source/blender/python/generic/IDProp.c b/source/blender/python/generic/IDProp.c
index decc28198ff..eb883be5a56 100644
--- a/source/blender/python/generic/IDProp.c
+++ b/source/blender/python/generic/IDProp.c
@@ -23,14 +23,9 @@
* ***** END GPL LICENSE BLOCK *****
*/
-#include "DNA_ID.h"
-
#include "BKE_idprop.h"
#include "IDProp.h"
-// #include "gen_utils.h"
-
-#include "MEM_guardedalloc.h"
#define BSTR_EQ(a, b) (*(a) == *(b) && !strcmp(a, b))
diff --git a/source/blender/python/generic/Mathutils.c b/source/blender/python/generic/Mathutils.c
index fc21c26dd74..1cf4d2254ea 100644
--- a/source/blender/python/generic/Mathutils.c
+++ b/source/blender/python/generic/Mathutils.c
@@ -50,8 +50,6 @@
#include "Mathutils.h"
#include "BLI_math.h"
-#include "PIL_time.h"
-#include "BKE_utildefines.h"
//-------------------------DOC STRINGS ---------------------------
static char M_Mathutils_doc[] =
diff --git a/source/blender/python/generic/bpy_internal_import.c b/source/blender/python/generic/bpy_internal_import.c
index 873398e7763..fc0cd3fc18b 100644
--- a/source/blender/python/generic/bpy_internal_import.c
+++ b/source/blender/python/generic/bpy_internal_import.c
@@ -28,7 +28,6 @@
#include "bpy_internal_import.h"
#include "DNA_text_types.h"
-#include "DNA_ID.h"
#include "MEM_guardedalloc.h"
#include "BKE_text.h" /* txt_to_buf */
diff --git a/source/blender/python/generic/euler.c b/source/blender/python/generic/euler.c
index 84360a76e61..3c018333b39 100644
--- a/source/blender/python/generic/euler.c
+++ b/source/blender/python/generic/euler.c
@@ -30,9 +30,6 @@
#include "BLI_math.h"
#include "BKE_utildefines.h"
-#include "BLI_blenlib.h"
-
-#include "BLO_sys_types.h"
//----------------------------------Mathutils.Euler() -------------------
//makes a new euler for you to play with
diff --git a/source/blender/python/generic/quat.c b/source/blender/python/generic/quat.c
index 3a9617c05c4..b08383cb508 100644
--- a/source/blender/python/generic/quat.c
+++ b/source/blender/python/generic/quat.c
@@ -30,7 +30,6 @@
#include "BLI_math.h"
#include "BKE_utildefines.h"
-#include "BLI_blenlib.h"
//-----------------------------METHODS------------------------------
static char Quaternion_ToEuler_doc[] =