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>2012-03-15 10:08:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-15 10:08:27 +0400
commit6ed9c58a3db5abe45b3c07cf9ab62a1c4099f77b (patch)
treed85cfc07354c2ce300994d1108f9cf8a1ac58bcb /source/blender/python/bmesh
parentf53888c5ccc95f2ad362b0e3b2e03f04d26983b0 (diff)
prepare for adding bmesh py api for customdata layer access - no functional changes.
Diffstat (limited to 'source/blender/python/bmesh')
-rw-r--r--source/blender/python/bmesh/CMakeLists.txt6
-rw-r--r--source/blender/python/bmesh/bmesh_py_api.c2
-rw-r--r--source/blender/python/bmesh/bmesh_py_types.c2
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_select.c (renamed from source/blender/python/bmesh/bmesh_py_select.c)4
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_select.h (renamed from source/blender/python/bmesh/bmesh_py_select.h)6
5 files changed, 11 insertions, 9 deletions
diff --git a/source/blender/python/bmesh/CMakeLists.txt b/source/blender/python/bmesh/CMakeLists.txt
index 2b5a58171b6..512b3291186 100644
--- a/source/blender/python/bmesh/CMakeLists.txt
+++ b/source/blender/python/bmesh/CMakeLists.txt
@@ -33,13 +33,15 @@ set(INC_SYS
set(SRC
bmesh_py_api.c
- bmesh_py_select.c
bmesh_py_types.c
+ bmesh_py_types_customdata.c
+ bmesh_py_types_select.c
bmesh_py_utils.c
bmesh_py_api.h
- bmesh_py_select.h
bmesh_py_types.h
+ bmesh_py_types_customdata.h
+ bmesh_py_types_select.h
bmesh_py_utils.h
)
diff --git a/source/blender/python/bmesh/bmesh_py_api.c b/source/blender/python/bmesh/bmesh_py_api.c
index 5526926ec8e..e3d0455073e 100644
--- a/source/blender/python/bmesh/bmesh_py_api.c
+++ b/source/blender/python/bmesh/bmesh_py_api.c
@@ -34,8 +34,8 @@
#include "bmesh.h"
#include "bmesh_py_types.h"
+#include "bmesh_py_types_select.h"
#include "bmesh_py_utils.h"
-#include "bmesh_py_select.h"
#include "BLI_utildefines.h"
diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c
index 313761db5e2..c45ffd38493 100644
--- a/source/blender/python/bmesh/bmesh_py_types.c
+++ b/source/blender/python/bmesh/bmesh_py_types.c
@@ -44,8 +44,8 @@
#include "../generic/py_capi_utils.h"
-#include "bmesh_py_select.h"
#include "bmesh_py_types.h" /* own include */
+#include "bmesh_py_types_select.h"
/* Common Flags
* ************ */
diff --git a/source/blender/python/bmesh/bmesh_py_select.c b/source/blender/python/bmesh/bmesh_py_types_select.c
index 37beb43eeb5..fb9ec6437ae 100644
--- a/source/blender/python/bmesh/bmesh_py_select.c
+++ b/source/blender/python/bmesh/bmesh_py_types_select.c
@@ -23,7 +23,7 @@
* ***** END GPL LICENSE BLOCK *****
*/
-/** \file blender/python/bmesh/bmesh_py_select.c
+/** \file blender/python/bmesh/bmesh_py_types_select.c
* \ingroup pybmesh
*
* This file defines the types for 'BMesh.select_history'
@@ -38,7 +38,7 @@
#include "bmesh.h"
#include "bmesh_py_types.h"
-#include "bmesh_py_select.h"
+#include "bmesh_py_types_select.h"
#include "BLI_utildefines.h"
#include "BLI_listbase.h"
diff --git a/source/blender/python/bmesh/bmesh_py_select.h b/source/blender/python/bmesh/bmesh_py_types_select.h
index 3992dbe1ffe..13d4fc6ce03 100644
--- a/source/blender/python/bmesh/bmesh_py_select.h
+++ b/source/blender/python/bmesh/bmesh_py_types_select.h
@@ -23,12 +23,12 @@
* ***** END GPL LICENSE BLOCK *****
*/
-/** \file blender/python/bmesh/bmesh_py_select.h
+/** \file blender/python/bmesh/bmesh_py_types_select.h
* \ingroup pybmesh
*/
-#ifndef __BMESH_PY_SELECT_H__
-#define __BMESH_PY_SELECT_H__
+#ifndef __BMESH_PY_TYPES_SELECT_H__
+#define __BMESH_PY_TYPES_SELECT_H__
struct BPy_BMesh;