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-09-10 07:34:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-10 07:34:43 +0400
commit2812dd92cfa29c504b647736a304b33163418c4e (patch)
tree105528c1d4d30aaa43d40a34e9b273a003ef1ba1 /source/blender/makesdna
parent7e2259bff37dd8ba67ef0b4812d7d5c227701e3a (diff)
code cleanup: use BMEdit_FromObject() rather then me->edit_btmesh in more places.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index 5d55bb8a4db..e584cfd76ac 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -92,7 +92,8 @@ typedef struct Mesh {
struct MCol *mcol;
struct MSticky *msticky;
struct Mesh *texcomesh;
-
+
+ /* When the object is available, the preferred access method is: BMEdit_FromObject(ob) */
struct BMEditMesh *edit_btmesh; /* not saved in file! */
struct CustomData vdata, edata, fdata;