[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [50937] trunk/blender: code cleanup: correct spelling

Campbell Barton ideasman42 at gmail.com
Fri Sep 28 08:45:21 CEST 2012


Revision: 50937
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=50937
Author:   campbellbarton
Date:     2012-09-28 06:45:20 +0000 (Fri, 28 Sep 2012)
Log Message:
-----------
code cleanup: correct spelling

Modified Paths:
--------------
    trunk/blender/CMakeLists.txt
    trunk/blender/build_files/scons/config/win32-mingw-config.py
    trunk/blender/build_files/scons/config/win64-mingw-config.py
    trunk/blender/intern/audaspace/fftw/AUD_BandPassFactory.h
    trunk/blender/intern/audaspace/intern/AUD_PyInit.h
    trunk/blender/source/blender/blenkernel/intern/curve.c
    trunk/blender/source/blender/blenkernel/intern/particle.c
    trunk/blender/source/blender/blenkernel/intern/softbody.c
    trunk/blender/source/blender/blenkernel/intern/tracking.c
    trunk/blender/source/blender/editors/interface/interface_regions.c
    trunk/blender/source/blender/editors/mask/mask_select.c
    trunk/blender/source/blender/editors/space_view3d/view3d_draw.c
    trunk/blender/source/blender/editors/space_view3d/view3d_select.c
    trunk/blender/source/blender/makesdna/DNA_constraint_types.h
    trunk/blender/source/blender/makesrna/intern/rna_internal.h
    trunk/blender/source/blender/python/generic/py_capi_utils.c
    trunk/blender/source/blender/python/intern/bpy_rna.c
    trunk/blender/source/blender/python/intern/gpu.h

Modified: trunk/blender/CMakeLists.txt
===================================================================
--- trunk/blender/CMakeLists.txt	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/CMakeLists.txt	2012-09-28 06:45:20 UTC (rev 50937)
@@ -120,7 +120,7 @@
 option(WITH_PYTHON        "Enable Embedded Python API  (only disable for development)" ON)
 option(WITH_PYTHON_SECURITY "Disables execution of scripts within blend files by default (recommend to leave off)" OFF)
 mark_as_advanced(WITH_PYTHON)  # dont want people disabling this unless they really know what they are doing.
-mark_as_advanced(WITH_PYTHON_SECURITY)  # some distrobutions see this as a security issue, rather than have them patch it, make a build option.
+mark_as_advanced(WITH_PYTHON_SECURITY)  # some distributions see this as a security issue, rather than have them patch it, make a build option.
 
 option(WITH_PYTHON_SAFETY "Enable internal API error checking to track invalid data to prevent crash on access (at the expense of some effeciency, only enable for development)." OFF)
 option(WITH_PYTHON_MODULE "Enable building as a python module which runs without a user interface, like running regular blender in background mode (experimental, only enable for development)" OFF)
@@ -371,7 +371,7 @@
 	set(WITH_BOOST ON)
 endif()
 
-# don't store paths to libs for portable distrobution
+# don't store paths to libs for portable distribution
 if(WITH_INSTALL_PORTABLE)
 	set(CMAKE_SKIP_BUILD_RPATH TRUE)
 endif()
@@ -1303,7 +1303,7 @@
 		set(PLATFORM_LINKFLAGS "-Xlinker --stack=2097152")
 
 		## DISABLE - causes linking errors 
-		## for re-distrobution, so users dont need mingw installed
+		## for re-distribution, so users dont need mingw installed
 		# set(PLATFORM_LINKFLAGS "${PLATFORM_LINKFLAGS} -static-libgcc -static-libstdc++")
 
 	endif()

Modified: trunk/blender/build_files/scons/config/win32-mingw-config.py
===================================================================
--- trunk/blender/build_files/scons/config/win32-mingw-config.py	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/build_files/scons/config/win32-mingw-config.py	2012-09-28 06:45:20 UTC (rev 50937)
@@ -201,7 +201,7 @@
 PLATFORM_LINKFLAGS = ['-Xlinker', '--stack=2097152']
 
 ## DISABLED, causes linking errors!
-## for re-distrobution, so users dont need mingw installed
+## for re-distribution, so users dont need mingw installed
 # PLATFORM_LINKFLAGS += ["-static-libgcc", "-static-libstdc++"]
 
 BF_DEBUG = False

Modified: trunk/blender/build_files/scons/config/win64-mingw-config.py
===================================================================
--- trunk/blender/build_files/scons/config/win64-mingw-config.py	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/build_files/scons/config/win64-mingw-config.py	2012-09-28 06:45:20 UTC (rev 50937)
@@ -199,7 +199,7 @@
 PLATFORM_LINKFLAGS = ['-Xlinker', '--stack=2097152']
 
 ## DISABLED, causes linking errors!
-## for re-distrobution, so users dont need mingw installed
+## for re-distribution, so users dont need mingw installed
 # PLATFORM_LINKFLAGS += ["-static-libgcc", "-static-libstdc++"]
 
 BF_DEBUG = False

Modified: trunk/blender/intern/audaspace/fftw/AUD_BandPassFactory.h
===================================================================
--- trunk/blender/intern/audaspace/fftw/AUD_BandPassFactory.h	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/intern/audaspace/fftw/AUD_BandPassFactory.h	2012-09-28 06:45:20 UTC (rev 50937)
@@ -84,7 +84,7 @@
 	 * Sets the highest passed frequency.
 	 * \param high The highest passed frequency.
 	 */
-	void setHigh(float hight);
+	void setHigh(float high);
 
 	virtual AUD_IReader* createReader();
 };

Modified: trunk/blender/intern/audaspace/intern/AUD_PyInit.h
===================================================================
--- trunk/blender/intern/audaspace/intern/AUD_PyInit.h	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/intern/audaspace/intern/AUD_PyInit.h	2012-09-28 06:45:20 UTC (rev 50937)
@@ -38,7 +38,7 @@
 #endif
 
 /**
- * Initalizes the Python module.
+ * Initializes the Python module.
  */
 extern PyObject *AUD_initPython(void);
 

Modified: trunk/blender/source/blender/blenkernel/intern/curve.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/curve.c	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/source/blender/blenkernel/intern/curve.c	2012-09-28 06:45:20 UTC (rev 50937)
@@ -2768,7 +2768,7 @@
 
 	if (skip_align) {
 		/* handles need to be updated during animation and applying stuff like hooks,
-		 * but in such situatios it's quite difficult to distinguish in which order
+		 * but in such situations it's quite difficult to distinguish in which order
 		 * align handles should be aligned so skip them for now */
 		return;
 	}

Modified: trunk/blender/source/blender/blenkernel/intern/particle.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/particle.c	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/source/blender/blenkernel/intern/particle.c	2012-09-28 06:45:20 UTC (rev 50937)
@@ -116,7 +116,7 @@
 	}
 	return tot;
 }
-/* we allocate path cache memory in chunks instead of a big continguous
+/* we allocate path cache memory in chunks instead of a big contiguous
  * chunk, windows' memory allocater fails to find big blocks of memory often */
 
 #define PATH_CACHE_BUF_SIZE 1024

Modified: trunk/blender/source/blender/blenkernel/intern/softbody.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/softbody.c	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/source/blender/blenkernel/intern/softbody.c	2012-09-28 06:45:20 UTC (rev 50937)
@@ -151,7 +151,7 @@
 
 #define SOFTGOALSNAP  0.999f
 /* if bp-> goal is above make it a *forced follow original* and skip all ODE stuff for this bp
- * removes *unnecessary* stiffnes from ODE system
+ * removes *unnecessary* stiffness from ODE system
  */
 #define HEUNWARNLIMIT 1 /* 500 would be fine i think for detecting severe *stiff* stuff */
 

Modified: trunk/blender/source/blender/blenkernel/intern/tracking.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/tracking.c	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/source/blender/blenkernel/intern/tracking.c	2012-09-28 06:45:20 UTC (rev 50937)
@@ -335,7 +335,7 @@
 }
 
 /* Each marker has 5 coordinates associated with it that get warped with
- * tracking: the four corners ("pattern_corners"), and the cernter ("pos").
+ * tracking: the four corners ("pattern_corners"), and the center ("pos").
  * This function puts those 5 points into the appropriate frame for tracking
  * (the "search" coordinate frame).
  */

Modified: trunk/blender/source/blender/editors/interface/interface_regions.c
===================================================================
--- trunk/blender/source/blender/editors/interface/interface_regions.c	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/source/blender/editors/interface/interface_regions.c	2012-09-28 06:45:20 UTC (rev 50937)
@@ -152,7 +152,7 @@
  * if %xNN is given then NN is the return value if
  * that option is selected otherwise the return value
  * is the index of the option (starting with 1). %l
- * indicates a seperator, sss%l indicates a label and
+ * indicates a separator, sss%l indicates a label and
  * new column.
  *
  * \param str String to be parsed.

Modified: trunk/blender/source/blender/editors/mask/mask_select.c
===================================================================
--- trunk/blender/source/blender/editors/mask/mask_select.c	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/source/blender/editors/mask/mask_select.c	2012-09-28 06:45:20 UTC (rev 50937)
@@ -148,7 +148,7 @@
 		}
 
 		if (action == SEL_INVERT) {
-			/* we don't have generic functons for this, its restricted to this operator
+			/* we don't have generic functions for this, its restricted to this operator
 			 * if one day we need to re-use such functionality, they can be split out */
 
 			MaskSpline *spline;

Modified: trunk/blender/source/blender/editors/space_view3d/view3d_draw.c
===================================================================
--- trunk/blender/source/blender/editors/space_view3d/view3d_draw.c	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/source/blender/editors/space_view3d/view3d_draw.c	2012-09-28 06:45:20 UTC (rev 50937)
@@ -2559,7 +2559,7 @@
 		/* NOTE: currently OpenGL is supposed to always work in sRGB space and do not
 		 *       apply any tonemaps since it's really tricky to support for all features (GLSL, textures, etc)
 		 *       but due to compatibility issues background is being affected display transform, so we can
-		 *       emulate behavior of disabled colro management
+		 *       emulate behavior of disabled color management
 		 *       but this function is also used for sequencer's scene strips which shouldn't be affected by
 		 *       tonemaps now and should be purely sRGB, that's why we've got this colormanage_background
 		 *       we can drop this flag in cost of some compatibility loss -- background wouldn't be

Modified: trunk/blender/source/blender/editors/space_view3d/view3d_select.c
===================================================================
--- trunk/blender/source/blender/editors/space_view3d/view3d_select.c	2012-09-28 04:00:06 UTC (rev 50936)
+++ trunk/blender/source/blender/editors/space_view3d/view3d_select.c	2012-09-28 06:45:20 UTC (rev 50937)
@@ -1395,7 +1395,7 @@
 							}
 
 							/* index of bundle is 1<<16-based. if there's no "bone" index
-							 * in hight word, this buffer value belongs to camera,. not to bundle */
+							 * in height word, this buffer value belongs to camera,. not to bundle */
 							if (buffer[4 * i + 3] & 0xFFFF0000) {
 								MovieClip *clip = BKE_object_movieclip_get(scene, basact->object, 0);
 								MovieTracking *tracking = &clip->tracking;

Modified: trunk/blender/source/blender/makesdna/DNA_constraint_types.h
===================================================================
--- trunk/blender/source/blender/makesdna/DNA_constraint_types.h	2012-09-28 04:00:06 UTC (rev 50936)

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-blender-cvs mailing list