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>2010-01-14 13:59:42 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-14 13:59:42 +0300
commitb0f87935a8d0de0f9ed886c7f26f1b7af41ed12a (patch)
tree5b3a22868f1b2eaedca523267cee05fa3fd71766 /source/blender/editors
parent4371c3b0444bdaa8f47e43692095a70c388b57f2 (diff)
spelling errors, no real changes to code.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/armature/editarmature.c4
-rw-r--r--source/blender/editors/interface/interface_widgets.c2
-rw-r--r--source/blender/editors/mesh/editmesh_add.c2
-rw-r--r--source/blender/editors/mesh/editmesh_lib.c2
-rw-r--r--source/blender/editors/object/object_select.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c
index f382896c868..1b6b489488c 100644
--- a/source/blender/editors/armature/editarmature.c
+++ b/source/blender/editors/armature/editarmature.c
@@ -517,7 +517,7 @@ void unique_editbone_name (ListBase *edbo, char *name, EditBone *bone)
/* Strip off the suffix, if it's a number */
number= strlen(name);
if (number && isdigit(name[number-1])) {
- dot= strrchr(name, '.'); // last occurrance
+ dot= strrchr(name, '.'); // last occurrence
if (dot)
*dot=0;
}
@@ -5318,7 +5318,7 @@ void unique_bone_name (bArmature *arm, char *name)
/* Strip off the suffix, if it's a number */
number= strlen(name);
if(number && isdigit(name[number-1])) {
- dot= strrchr(name, '.'); // last occurrance
+ dot= strrchr(name, '.'); // last occurrence
if (dot)
*dot=0;
}
diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c
index 575f298b3cd..b5d656bc2b6 100644
--- a/source/blender/editors/interface/interface_widgets.c
+++ b/source/blender/editors/interface/interface_widgets.c
@@ -1008,7 +1008,7 @@ static void widget_draw_text_icon(uiFontStyle *fstyle, uiWidgetColors *wcol, uiB
}
/* If there's an icon too (made with uiDefIconTextBut) then draw the icon
- and offset the text label to accomodate it */
+ and offset the text label to accommodate it */
if (but->flag & UI_HAS_ICON) {
widget_draw_icon(but, but->icon+but->iconadd, 1.0f, rect);
diff --git a/source/blender/editors/mesh/editmesh_add.c b/source/blender/editors/mesh/editmesh_add.c
index 3a80d7c69bb..d6b4b43c569 100644
--- a/source/blender/editors/mesh/editmesh_add.c
+++ b/source/blender/editors/mesh/editmesh_add.c
@@ -484,7 +484,7 @@ static int compareface_overlaps(EditFace *vl1, EditFace *vl2)
return 0;
}
-/* checks for existance, and for tria overlapping inside quad */
+/* checks for existence, and for tria overlapping inside quad */
static EditFace *exist_face_overlaps(EditMesh *em, EditVert *v1, EditVert *v2, EditVert *v3, EditVert *v4)
{
EditFace *efa, efatest;
diff --git a/source/blender/editors/mesh/editmesh_lib.c b/source/blender/editors/mesh/editmesh_lib.c
index d99765bd199..69043d9fa98 100644
--- a/source/blender/editors/mesh/editmesh_lib.c
+++ b/source/blender/editors/mesh/editmesh_lib.c
@@ -1975,7 +1975,7 @@ int compareface(EditFace *vl1, EditFace *vl2)
return 0;
}
-/* checks for existance, not tria overlapping inside quad */
+/* checks for existence, not tria overlapping inside quad */
EditFace *exist_face(EditMesh *em, EditVert *v1, EditVert *v2, EditVert *v3, EditVert *v4)
{
EditFace *efa, efatest;
diff --git a/source/blender/editors/object/object_select.c b/source/blender/editors/object/object_select.c
index becad003d5c..b3a160dfff4 100644
--- a/source/blender/editors/object/object_select.c
+++ b/source/blender/editors/object/object_select.c
@@ -786,7 +786,7 @@ void object_flip_name (char *name)
/* We first check the case with a .### extension, let's find the last period */
if(isdigit(name[len-1])) {
- index= strrchr(name, '.'); // last occurrance
+ index= strrchr(name, '.'); // last occurrence
if (index && isdigit(index[1]) ) { // doesnt handle case bone.1abc2 correct..., whatever!
strcpy(number, index);
*index= 0;