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>2014-01-27 18:50:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-27 18:50:09 +0400
commit5aa006bc1c9b99bcbc1a5190d34a70fcaaa0d2da (patch)
tree877bab15dbf191abdfd7d5f39f5f4c6cc00cbe6f /source/blender/python
parent9e20d3e32aa27d10edbc835a2fa850ea5459dc9d (diff)
Fix incorrect extern
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types_meshdata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types_meshdata.c b/source/blender/python/bmesh/bmesh_py_types_meshdata.c
index b935dbccf34..e9ee53c9b9c 100644
--- a/source/blender/python/bmesh/bmesh_py_types_meshdata.c
+++ b/source/blender/python/bmesh/bmesh_py_types_meshdata.c
@@ -57,7 +57,7 @@ typedef struct BPy_BMTexPoly {
} BPy_BMTexPoly;
extern PyObject *pyrna_id_CreatePyObject(ID *id);
-extern int pyrna_id_FromPyObject(PyObject *obj, ID **id);
+extern bool pyrna_id_FromPyObject(PyObject *obj, ID **id);
PyDoc_STRVAR(bpy_bmtexpoly_image_doc,
"Image or None.\n\n:type: :class:`bpy.types.Image`"