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:
authorNathan Letwory <nathan@letworyinteractive.com>2006-11-07 14:24:11 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2006-11-07 14:24:11 +0300
commit008d6987d0d2b0b2d3bc44c649b769c2d32d6f59 (patch)
tree0d765dd87b3ba0ad12f0baee21d14381fdf852a3 /source/blender/python/api2_2x/Scene.c
parenta8d1f308072261afb90a12cdb6c54c9a3981e087 (diff)
move SPACE_* (enum) and SPACEICONMAX to DNA_space_types (being the more logical place than DNA_screen_types). SPACEICONMAX gets its value now through this enum, so it is not anymore easy to forget to update it correctly :)
Diffstat (limited to 'source/blender/python/api2_2x/Scene.c')
-rw-r--r--source/blender/python/api2_2x/Scene.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Scene.c b/source/blender/python/api2_2x/Scene.c
index 3f2d8071c55..8b096f81840 100644
--- a/source/blender/python/api2_2x/Scene.c
+++ b/source/blender/python/api2_2x/Scene.c
@@ -37,7 +37,8 @@ struct View3D;
#include "BKE_global.h"
#include "BKE_main.h"
#include "MEM_guardedalloc.h" /* for MEM_callocN */
-#include "DNA_screen_types.h" /* SPACE_VIEW3D, SPACE_SEQ */
+#include "DNA_space_types.h" /* SPACE_VIEW3D, SPACE_SEQ */
+#include "DNA_screen_types.h"
#include "DNA_userdef_types.h" /* U.userdefs */
#include "DNA_object_types.h" /* SceneObSeq_new */
#include "BKE_depsgraph.h"