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-18 11:38:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-18 11:38:51 +0400
commit4f19c1a995de507044d1b5ada7fb7398cdb32096 (patch)
treee46c13dd84a493177c80af0715f8f9b09c333943 /source/blender/editors/uvedit
parente56f71400060f10f73bed6b5c52fc537e5a0d617 (diff)
spelling cleanup
Diffstat (limited to 'source/blender/editors/uvedit')
-rw-r--r--source/blender/editors/uvedit/uvedit_ops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c
index c2568100ac2..501aa93cfa6 100644
--- a/source/blender/editors/uvedit/uvedit_ops.c
+++ b/source/blender/editors/uvedit/uvedit_ops.c
@@ -1044,7 +1044,7 @@ static int select_edgeloop(Scene *scene, Image *ima, BMEditMesh *em, NearestHit
starttotf= 0;
uv_edge_tag_faces(em, iterv1, iterv2, &starttotf);
- /* sorry, first edge isnt even ok */
+ /* sorry, first edge isn't even ok */
if(iterv1->flag==0 && iterv2->flag==0) looking= 0;
else looking= 1;
@@ -1462,7 +1462,7 @@ static void weld_align_uv(bContext *C, int tool)
/* walk over edges, building an array of verts in a line */
while (eve) {
BLI_array_append(eve_line, eve);
- /* dont touch again */
+ /* don't touch again */
BM_elem_flag_disable(eve, BM_ELEM_TAG);
eve_next = NULL;
@@ -1737,7 +1737,7 @@ static int mouse_select(bContext *C, float co[2], int extend, int loop)
NearestHit hit;
int i, select = 1, selectmode, sticky, sync, *hitv=NULL, nvert;
BLI_array_declare(hitv);
- int flush = 0, hitlen=0; /* 0 == dont flush, 1 == sel, -1 == desel; only use when selection sync is enabled */
+ int flush = 0, hitlen=0; /* 0 == don't flush, 1 == sel, -1 == desel; only use when selection sync is enabled */
float limit[2], **hituv = NULL;
BLI_array_declare(hituv);
float penalty[2];