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:
authorWillian Padovani Germano <wpgermano@gmail.com>2004-05-09 06:18:51 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2004-05-09 06:18:51 +0400
commitfe894790361c604bb0d2215073b060dae01df99b (patch)
treef4e612b413ae110514efbeb7fceb90283ed8554b /source/blender/python/api2_2x/NMesh.h
parenta2d9c2b905f1c2b80e7e643a15bcb2df7fcb70b3 (diff)
BPython:
- Manuel from MakeHuman reported a memory leak in NMesh_getVertsFromGroup, should be fixed now. A pylist was not being decref'ed.
Diffstat (limited to 'source/blender/python/api2_2x/NMesh.h')
-rw-r--r--source/blender/python/api2_2x/NMesh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/NMesh.h b/source/blender/python/api2_2x/NMesh.h
index 499f9428700..efaba2a9e17 100644
--- a/source/blender/python/api2_2x/NMesh.h
+++ b/source/blender/python/api2_2x/NMesh.h
@@ -261,7 +261,7 @@ typedef struct {
float no[3];
float uvco[3];
int index;
- char flag; /* see MVert flag in DNA_mesh_types */
+ char flag; /* see MVert flag in DNA_meshdata_types */
} BPy_NMVert; /* an NMesh vertex */