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:
authorGaia Clary <gaia.clary@machinimatrix.org>2012-06-18 03:13:39 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2012-06-18 03:13:39 +0400
commit15f4eb34fa2f3bc511c513640b3eac2d03398f47 (patch)
treec565db6b05ac36219f664a6d69f1197f3b6885f9 /source/blender/editors/space_api
parentc4eb9c7a7b327ab1ae7091baa6556859178f2b64 (diff)
Collada: Moved interface definitions from wm_operators.c to blender/editors/io
Diffstat (limited to 'source/blender/editors/space_api')
-rw-r--r--source/blender/editors/space_api/CMakeLists.txt1
-rw-r--r--source/blender/editors/space_api/spacetypes.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_api/CMakeLists.txt b/source/blender/editors/space_api/CMakeLists.txt
index 137cda9c285..0abdd134046 100644
--- a/source/blender/editors/space_api/CMakeLists.txt
+++ b/source/blender/editors/space_api/CMakeLists.txt
@@ -20,6 +20,7 @@
set(INC
../include
+ ../io
../../blenkernel
../../blenlib
../../blenloader
diff --git a/source/blender/editors/space_api/spacetypes.c b/source/blender/editors/space_api/spacetypes.c
index fa77249a7a1..e4fd3dca570 100644
--- a/source/blender/editors/space_api/spacetypes.c
+++ b/source/blender/editors/space_api/spacetypes.c
@@ -64,6 +64,8 @@
#include "ED_clip.h"
#include "ED_mask.h"
+#include "IO_ops.h"
+
/* only call once on startup, storage is global in BKE kernel listbase */
void ED_spacetypes_init(void)
{
@@ -113,6 +115,7 @@ void ED_spacetypes_init(void)
ED_operatortypes_render();
ED_operatortypes_logic();
ED_operatortypes_mask();
+ ED_operatortypes_io();
UI_view2d_operatortypes();
UI_buttons_operatortypes();