Commit: 5e0e1754227514d0f6ebd328f1b9a07cda607779
Author: Campbell Barton
Date:   Mon Nov 3 23:26:43 2014 +0100
Branches: master
https://developer.blender.org/rB5e0e1754227514d0f6ebd328f1b9a07cda607779

Cleanup: spelling (D831)

===================================================================

M       build_files/cmake/cmake_consistency_check.py
M       source/blender/blenlib/intern/storage.c
M       source/blender/bmesh/intern/bmesh_callback_generic.c
M       source/blender/editors/animation/anim_filter.c
M       source/blender/editors/space_graph/space_graph.c
M       source/blender/editors/space_nla/space_nla.c
M       source/blender/makesrna/intern/rna_action.c
M       source/blender/makesrna/intern/rna_space.c

===================================================================

diff --git a/build_files/cmake/cmake_consistency_check.py 
b/build_files/cmake/cmake_consistency_check.py
index 2e0eeb1..3de27ff 100755
--- a/build_files/cmake/cmake_consistency_check.py
+++ b/build_files/cmake/cmake_consistency_check.py
@@ -201,7 +201,7 @@ def cmake_get_src(f):
                                     # replace_line(f, i - 1, new_path_rel)
 
                             else:
-                                raise Exception("non existant include %s:%d -> 
%s" % (f, i, new_file))
+                                raise Exception("non existent include %s:%d -> 
%s" % (f, i, new_file))
 
                         # print(new_file)
 
diff --git a/source/blender/blenlib/intern/storage.c 
b/source/blender/blenlib/intern/storage.c
index f3ecc79..c062d62 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -280,7 +280,7 @@ static void bli_builddir(struct BuildDirCtx *dir_ctx, const 
char *dirname)
                closedir(dir);
        }
        else {
-               printf("%s non-existant directory\n", dirname);
+               printf("%s non-existent directory\n", dirname);
        }
 }
 
diff --git a/source/blender/bmesh/intern/bmesh_callback_generic.c 
b/source/blender/bmesh/intern/bmesh_callback_generic.c
index 91fec39..84fcc67 100644
--- a/source/blender/bmesh/intern/bmesh_callback_generic.c
+++ b/source/blender/bmesh/intern/bmesh_callback_generic.c
@@ -21,7 +21,7 @@
 /** \file blender/bmesh/intern/bmesh_callback_generic.c
  *  \ingroup bmesh
  *
- * BM construction functions.
+ * BM element callback functions.
  */
 
 #include "BLI_utildefines.h"
diff --git a/source/blender/editors/animation/anim_filter.c 
b/source/blender/editors/animation/anim_filter.c
index b2878d6..cedaea7 100644
--- a/source/blender/editors/animation/anim_filter.c
+++ b/source/blender/editors/animation/anim_filter.c
@@ -216,7 +216,7 @@ static bool actedit_get_context(bAnimContext *ac, 
SpaceAction *saction)
 /* Get data being edited in Graph Editor (depending on current 'mode') */
 static bool graphedit_get_context(bAnimContext *ac, SpaceIpo *sipo)
 {
-       /* init dopesheet data if non-existant (i.e. for old files) */
+       /* init dopesheet data if non-existent (i.e. for old files) */
        if (sipo->ads == NULL) {
                sipo->ads = MEM_callocN(sizeof(bDopeSheet), "GraphEdit 
DopeSheet");
                sipo->ads->source = (ID *)ac->scene;
@@ -267,7 +267,7 @@ static bool graphedit_get_context(bAnimContext *ac, 
SpaceIpo *sipo)
 /* Get data being edited in Graph Editor (depending on current 'mode') */
 static bool nlaedit_get_context(bAnimContext *ac, SpaceNla *snla)
 {
-       /* init dopesheet data if non-existant (i.e. for old files) */
+       /* init dopesheet data if non-existent (i.e. for old files) */
        if (snla->ads == NULL)
                snla->ads = MEM_callocN(sizeof(bDopeSheet), "NlaEdit 
DopeSheet");
        ac->ads = snla->ads;
diff --git a/source/blender/editors/space_graph/space_graph.c 
b/source/blender/editors/space_graph/space_graph.c
index ef6cb19..ad6f3ff 100644
--- a/source/blender/editors/space_graph/space_graph.c
+++ b/source/blender/editors/space_graph/space_graph.c
@@ -182,7 +182,7 @@ static void graph_init(struct wmWindowManager *UNUSED(wm), 
ScrArea *sa)
 {
        SpaceIpo *sipo = (SpaceIpo *)sa->spacedata.first;
        
-       /* init dopesheet data if non-existant (i.e. for old files) */
+       /* init dopesheet data if non-existent (i.e. for old files) */
        if (sipo->ads == NULL) {
                sipo->ads = MEM_callocN(sizeof(bDopeSheet), "GraphEdit 
DopeSheet");
                sipo->ads->source = (ID *)(G.main->scene.first); // FIXME: this 
is a really nasty hack here for now...
diff --git a/source/blender/editors/space_nla/space_nla.c 
b/source/blender/editors/space_nla/space_nla.c
index ee2914a..cc1d600 100644
--- a/source/blender/editors/space_nla/space_nla.c
+++ b/source/blender/editors/space_nla/space_nla.c
@@ -180,7 +180,7 @@ static void nla_init(struct wmWindowManager *UNUSED(wm), 
ScrArea *sa)
 {
        SpaceNla *snla = (SpaceNla *)sa->spacedata.first;
        
-       /* init dopesheet data if non-existant (i.e. for old files) */
+       /* init dopesheet data if non-existent (i.e. for old files) */
        if (snla->ads == NULL) {
                snla->ads = MEM_callocN(sizeof(bDopeSheet), "NlaEdit 
DopeSheet");
                snla->ads->source = (ID *)G.main->scene.first; // XXX this is 
bad, but we need this to be set correct
diff --git a/source/blender/makesrna/intern/rna_action.c 
b/source/blender/makesrna/intern/rna_action.c
index 750c98a..4cac5d4 100644
--- a/source/blender/makesrna/intern/rna_action.c
+++ b/source/blender/makesrna/intern/rna_action.c
@@ -60,7 +60,7 @@ static void 
rna_ActionGroup_channels_next(CollectionPropertyIterator *iter)
        FCurve *fcu = (FCurve *)internal->link;
        bActionGroup *grp = fcu->grp;
        
-       /* only continue if the next F-Curve (if existant) belongs in the same 
group */
+       /* only continue if the next F-Curve (if existent) belongs in the same 
group */
        if ((fcu->next) && (fcu->next->grp == grp))
                internal->link = (Link *)fcu->next;
        else
diff --git a/source/blender/makesrna/intern/rna_space.c 
b/source/blender/makesrna/intern/rna_space.c
index a314e99..68173eb 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -1117,12 +1117,12 @@ static void rna_SpaceDopeSheetEditor_action_update(Main 
*UNUSED(bmain), Scene *s
                
                if (saction->mode == SACTCONT_ACTION) {
                        /* TODO: context selector could help decide this with 
more control? */
-                       adt = BKE_id_add_animdata(&obact->id); /* this only 
adds if non-existant */
+                       adt = BKE_id_add_animdata(&obact->id); /* this only 
adds if non-existent */
                }
                else if (saction->mode == SACTCONT_SHAPEKEY) {
                        Key *key = BKE_key_from_object(obact);
                        if (key)
-                               adt = BKE_id_add_animdata(&key->id);  /* this 
only adds if non-existant */
+                               adt = BKE_id_add_animdata(&key->id);  /* this 
only adds if non-existent */
                }
                
                /* set action */

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to