Revision: 48592
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=48592
Author:   mont29
Date:     2012-07-04 15:04:38 +0000 (Wed, 04 Jul 2012)
Log Message:
-----------
More spell checking.

Modified Paths:
--------------
    trunk/blender/GNUmakefile
    trunk/blender/intern/cycles/blender/addon/properties.py
    trunk/blender/release/scripts/modules/bl_i18n_utils/spell_check_utils.py
    trunk/blender/release/scripts/modules/bpy/utils.py
    trunk/blender/release/scripts/modules/bpy_extras/__init__.py
    trunk/blender/source/blender/blenkernel/intern/nla.c
    trunk/blender/source/blender/bmesh/intern/bmesh_opdefines.c
    
trunk/blender/source/blender/compositor/operations/COM_DifferenceMatteOperation.cpp
    
trunk/blender/source/blender/compositor/operations/COM_DistanceMatteOperation.cpp
    trunk/blender/source/blender/editors/animation/keyframing.c
    trunk/blender/source/blender/editors/gpencil/drawgpencil.c
    trunk/blender/source/blender/editors/gpencil/editaction_gpencil.c
    trunk/blender/source/blender/editors/include/ED_screen_types.h
    trunk/blender/source/blender/editors/interface/interface.c
    trunk/blender/source/blender/editors/interface/interface_handlers.c
    trunk/blender/source/blender/editors/interface/view2d.c
    trunk/blender/source/blender/editors/mesh/editmesh_tools.c
    trunk/blender/source/blender/editors/screen/screen_ops.c
    trunk/blender/source/blender/editors/sculpt_paint/paint_vertex.c
    trunk/blender/source/blender/editors/space_file/file_intern.h
    trunk/blender/source/blender/editors/space_file/file_ops.c
    trunk/blender/source/blender/editors/space_file/space_file.c
    trunk/blender/source/blender/editors/space_graph/graph_draw.c
    trunk/blender/source/blender/editors/space_node/node_edit.c
    trunk/blender/source/blender/makesdna/DNA_action_types.h
    trunk/blender/source/blender/makesdna/DNA_constraint_types.h
    trunk/blender/source/blender/makesdna/DNA_curve_types.h
    trunk/blender/source/blender/makesrna/intern/rna_curve.c
    trunk/blender/source/blender/makesrna/intern/rna_dynamicpaint.c
    trunk/blender/source/blender/makesrna/intern/rna_fluidsim.c
    trunk/blender/source/blender/makesrna/intern/rna_key.c
    trunk/blender/source/blender/makesrna/intern/rna_mesh.c
    trunk/blender/source/blender/makesrna/intern/rna_nodetree.c
    trunk/blender/source/blender/makesrna/intern/rna_object.c
    trunk/blender/source/blender/makesrna/intern/rna_screen.c
    trunk/blender/source/blender/makesrna/intern/rna_userdef.c
    trunk/blender/source/blender/makesrna/intern/rna_wm.c
    
trunk/blender/source/blender/nodes/composite/nodes/node_composite_diffMatte.c
    
trunk/blender/source/blender/nodes/composite/nodes/node_composite_distanceMatte.c
    trunk/blender/source/blender/python/bmesh/bmesh_py_api.c
    trunk/blender/source/blender/python/bmesh/bmesh_py_types.c
    trunk/blender/source/blender/windowmanager/intern/wm_apple.c
    trunk/blender/source/gameengine/Ketsji/KX_KetsjiEngine.cpp
    trunk/blender/source/gameengine/SceneGraph/SG_Tree.h
    trunk/blender/source/tools/uncrustify.cfg

Modified: trunk/blender/GNUmakefile
===================================================================
--- trunk/blender/GNUmakefile   2012-07-04 14:22:41 UTC (rev 48591)
+++ trunk/blender/GNUmakefile   2012-07-04 15:04:38 UTC (rev 48592)
@@ -162,21 +162,21 @@
        @echo "  * package_pacman  - build an arch linux pacmanpackage"
        @echo "  * package_archive - build an archive package"
        @echo ""
-       @echo "Testing Targets (not assosiated with building blender)"
+       @echo "Testing Targets (not associated with building blender)"
        @echo "  * test            - run ctest, currently tests import/export, 
operator execution and that python modules load"
        @echo "  * test_cmake      - runs our own cmake file checker which 
detects errors in the cmake file list definitions"
        @echo "  * test_pep8       - checks all python script are pep8 which 
are tagged to use the stricter formatting"
        @echo "  * test_deprecated - checks for deprecation tags in our code 
which may need to be removed"
        @echo "  * test_style      - checks C/C++ conforms with blenders style 
guide: http://wiki.blender.org/index.php/Dev:Doc/CodeStyle";
        @echo ""
-       @echo "Static Source Code Checking (not assosiated with building 
blender)"
+       @echo "Static Source Code Checking (not associated with building 
blender)"
        @echo "  * check_cppcheck    - run blender source through cppcheck (C & 
C++)"
        @echo "  * check_splint      - run blenders source through splint (C 
only)"
        @echo "  * check_sparse      - run blenders source through sparse (C 
only)"
        @echo "  * check_spelling_c  - check for spelling errors (C/C++ only)"
        @echo "  * check_spelling_py - check for spelling errors (Python only)"
        @echo ""
-       @echo "Documentation Targets (not assosiated with building blender)"
+       @echo "Documentation Targets (not associated with building blender)"
        @echo "  * doc_py   - generate sphinx python api docs"
        @echo "  * doc_doxy - generate doxygen C/C++ docs"
        @echo "  * doc_dna  - generate blender file format reference"

Modified: trunk/blender/intern/cycles/blender/addon/properties.py
===================================================================
--- trunk/blender/intern/cycles/blender/addon/properties.py     2012-07-04 
14:22:41 UTC (rev 48591)
+++ trunk/blender/intern/cycles/blender/addon/properties.py     2012-07-04 
15:04:38 UTC (rev 48592)
@@ -143,7 +143,9 @@
 
         cls.min_bounces = IntProperty(
                 name="Min Bounces",
-                description="Minimum number of bounces, setting this lower 
than the maximum enables probalistic path termination (faster but noisier)",
+                description="Minimum number of bounces, setting this lower "
+                            "than the maximum enables probabilistic path "
+                            "termination (faster but noisier)",
                 min=0, max=1024,
                 default=3,
                 )
@@ -175,7 +177,10 @@
 
         cls.transparent_min_bounces = IntProperty(
                 name="Transparent Min Bounces",
-                description="Minimum number of transparent bounces, setting 
this lower than the maximum enables probalistic path termination (faster but 
noisier)",
+                description="Minimum number of transparent bounces, setting "
+                            "this lower than the maximum enables "
+                            "probabilistic path termination (faster but "
+                            "noisier)",
                 min=0, max=1024,
                 default=8,
                 )

Modified: 
trunk/blender/release/scripts/modules/bl_i18n_utils/spell_check_utils.py
===================================================================
--- trunk/blender/release/scripts/modules/bl_i18n_utils/spell_check_utils.py    
2012-07-04 14:22:41 UTC (rev 48591)
+++ trunk/blender/release/scripts/modules/bl_i18n_utils/spell_check_utils.py    
2012-07-04 15:04:38 UTC (rev 48592)
@@ -38,6 +38,7 @@
     "betweens",  # yuck! in-betweens!
     "boolean", "booleans",
     "decrement",
+    "derivate",
     "doesn",  # doesn't
     "fader",
     "hoc",  # ad-hoc
@@ -88,7 +89,7 @@
     "fullscreen",
     "gridline",
     "hemi",
-    "inscatter",
+    "inscatter", "inscattering",
     "lightless",
     "lookup", "lookups",
     "mathutils",
@@ -161,6 +162,7 @@
     "unspill",
     "unstitchable",
     "vectorscope",
+    "whitespace",
     "worldspace",
     "workflow",
 
@@ -182,6 +184,7 @@
     "polygonization",
     "selectability",
     "slurph",
+    "stitchable",
     "trackability",
     "transmissivity",
     "rasterized", "rasterization",
@@ -332,6 +335,7 @@
     "dupligroup",
     "duplivert",
     "editbone",
+    "editmode",
     "fcurve", "fcurves",
     "fluidsim",
     "frameserver",

Modified: trunk/blender/release/scripts/modules/bpy/utils.py
===================================================================
--- trunk/blender/release/scripts/modules/bpy/utils.py  2012-07-04 14:22:41 UTC 
(rev 48591)
+++ trunk/blender/release/scripts/modules/bpy/utils.py  2012-07-04 15:04:38 UTC 
(rev 48592)
@@ -20,7 +20,7 @@
 
 """
 This module contains utility functions specific to blender but
-not assosiated with blenders internal data.
+not associated with blenders internal data.
 """
 
 __all__ = (

Modified: trunk/blender/release/scripts/modules/bpy_extras/__init__.py
===================================================================
--- trunk/blender/release/scripts/modules/bpy_extras/__init__.py        
2012-07-04 14:22:41 UTC (rev 48591)
+++ trunk/blender/release/scripts/modules/bpy_extras/__init__.py        
2012-07-04 15:04:38 UTC (rev 48592)
@@ -19,7 +19,7 @@
 # <pep8-80 compliant>
 
 """
-Utility modules assosiated with the bpy module.
+Utility modules associated with the bpy module.
 """
 
 __all__ = (

Modified: trunk/blender/source/blender/blenkernel/intern/nla.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/nla.c        2012-07-04 
14:22:41 UTC (rev 48591)
+++ trunk/blender/source/blender/blenkernel/intern/nla.c        2012-07-04 
15:04:38 UTC (rev 48592)
@@ -1391,7 +1391,7 @@
                
        /* set overlaps for this strip 
         *      - don't use the values obtained though if the end in question 
-        *        is directly followed/preceeded by another strip, forming an 
+        *        is directly followed/preceded by another strip, forming an 
         *        'island' of continuous strips
         */
        if ((ps || ns) && ((nls->prev == NULL) || IS_EQF(nls->prev->end, 
nls->start) == 0)) {

Modified: trunk/blender/source/blender/bmesh/intern/bmesh_opdefines.c
===================================================================
--- trunk/blender/source/blender/bmesh/intern/bmesh_opdefines.c 2012-07-04 
14:22:41 UTC (rev 48591)
+++ trunk/blender/source/blender/bmesh/intern/bmesh_opdefines.c 2012-07-04 
15:04:38 UTC (rev 48592)
@@ -1039,7 +1039,7 @@
         {BMO_OP_SLOT_BOOL, "use_dist"}, /* corner vert placement: evaluate 
percent as a distance,
                                          * modifier uses this. We could do 
this as another float setting */
         {BMO_OP_SLOT_INT, "lengthlayer"}, /* which PROP_FLT layer to us */
-        {BMO_OP_SLOT_FLT, "percent"}, /* percentage to expand bevelled edge */
+        {BMO_OP_SLOT_FLT, "percent"}, /* percentage to expand beveled edge */
         {0} /* null-terminating sentinel */},
        bmo_bevel_exec,
        BMO_OP_FLAG_UNTAN_MULTIRES

Modified: 
trunk/blender/source/blender/compositor/operations/COM_DifferenceMatteOperation.cpp
===================================================================
--- 
trunk/blender/source/blender/compositor/operations/COM_DifferenceMatteOperation.cpp
 2012-07-04 14:22:41 UTC (rev 48591)
+++ 
trunk/blender/source/blender/compositor/operations/COM_DifferenceMatteOperation.cpp
 2012-07-04 15:04:38 UTC (rev 48592)
@@ -49,7 +49,7 @@
        float inColor1[4];
        float inColor2[4];
 
-       const float tolerence = this->m_settings->t1;
+       const float tolerance = this->m_settings->t1;
        const float falloff = this->m_settings->t2;
        float difference;
        float alpha;
@@ -65,12 +65,12 @@
        difference = difference / 3.0f;
 
        /*make 100% transparent*/
-       if (difference < tolerence) {
+       if (difference < tolerance) {
                outputValue[0] = 0.0f;
        }
        /*in the falloff region, make partially transparent */
-       else if (difference < falloff + tolerence) {
-               difference = difference - tolerence;
+       else if (difference < falloff + tolerance) {
+               difference = difference - tolerance;
                alpha = difference / falloff;
                /*only change if more transparent than before */
                if (alpha < inColor1[3]) {

Modified: 
trunk/blender/source/blender/compositor/operations/COM_DistanceMatteOperation.cpp
===================================================================
--- 
trunk/blender/source/blender/compositor/operations/COM_DistanceMatteOperation.cpp
   2012-07-04 14:22:41 UTC (rev 48591)
+++ 
trunk/blender/source/blender/compositor/operations/COM_DistanceMatteOperation.cpp
   2012-07-04 15:04:38 UTC (rev 48592)
@@ -49,7 +49,7 @@
        float inKey[4];
        float inImage[4];
 
-       const float tolerence = this->m_settings->t1;
+       const float tolerance = this->m_settings->t1;
        const float falloff = this->m_settings->t2;
 
        float distance;
@@ -67,12 +67,12 @@
         */
  
        /*make 100% transparent */
-       if (distance < tolerence) {
+       if (distance < tolerance) {
                outputValue[0] = 0.f;
        }
        /*in the falloff region, make partially transparent */
-       else if (distance < falloff + tolerence) {
-               distance = distance - tolerence;
+       else if (distance < falloff + tolerance) {
+               distance = distance - tolerance;
                alpha = distance / falloff;
                /*only change if more transparent than before */
                if (alpha < inImage[3]) {

Modified: trunk/blender/source/blender/editors/animation/keyframing.c
===================================================================
--- trunk/blender/source/blender/editors/animation/keyframing.c 2012-07-04 
14:22:41 UTC (rev 48591)
+++ trunk/blender/source/blender/editors/animation/keyframing.c 2012-07-04 
15:04:38 UTC (rev 48592)
@@ -1581,7 +1581,7 @@
        ot->flag = OPTYPE_UNDO;
 
        /* properties */
-       RNA_def_boolean(ot->srna, "all", 1, "All", "Delete keyfames from all 
elements of the array");
+       RNA_def_boolean(ot->srna, "all", 1, "All", "Delete keyframes from all 
elements of the array");
 }
 
 /* ******************************************* */

Modified: trunk/blender/source/blender/editors/gpencil/drawgpencil.c
===================================================================
--- trunk/blender/source/blender/editors/gpencil/drawgpencil.c  2012-07-04 
14:22:41 UTC (rev 48591)

@@ Diff output truncated at 10240 characters. @@
_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to