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-06-30 13:55:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-30 13:55:04 +0400
commit35d842427356c99d3d96ccb93a07e0d5382aecfc (patch)
treec3b1fd2b926169d940ff81db34949c61f74391d3 /source/blender/editors/transform
parent436f02ab9cdf58d8b68f124be0d974a5de0d9308 (diff)
code cleanup: rename some members of bmesh operators, 'slots' is a C++ keyword which confuses some IDE's.
also added missing BMO_op_vinitf args to comments.
Diffstat (limited to 'source/blender/editors/transform')
-rw-r--r--source/blender/editors/transform/transform.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c
index 1d70c6d68f2..183808a8f5b 100644
--- a/source/blender/editors/transform/transform.c
+++ b/source/blender/editors/transform/transform.c
@@ -4998,7 +4998,6 @@ void projectSVData(TransInfo *t, int final)
BMEditMesh *em = sld->em;
SmallHash visit;
int i;
- short has_uv;
if (!em)
return;
@@ -5011,8 +5010,6 @@ void projectSVData(TransInfo *t, int final)
if (em->bm->shapenr > 1)
return;
- has_uv = CustomData_has_layer(&(em->bm->ldata), CD_MLOOPUV);
-
BLI_smallhash_init(&visit);
for (i = 0, sv = sld->sv; i < sld->totsv; sv++, i++) {