[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47593] trunk/blender: typo/style edits

Campbell Barton ideasman42 at gmail.com
Fri Jun 8 07:53:32 CEST 2012


Revision: 47593
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47593
Author:   campbellbarton
Date:     2012-06-08 05:53:30 +0000 (Fri, 08 Jun 2012)
Log Message:
-----------
typo/style edits

Modified Paths:
--------------
    trunk/blender/intern/guardedalloc/intern/mallocn.c
    trunk/blender/intern/raskter/raskter.c
    trunk/blender/source/blender/editors/space_outliner/outliner_tools.c

Modified: trunk/blender/intern/guardedalloc/intern/mallocn.c
===================================================================
--- trunk/blender/intern/guardedalloc/intern/mallocn.c	2012-06-08 05:46:00 UTC (rev 47592)
+++ trunk/blender/intern/guardedalloc/intern/mallocn.c	2012-06-08 05:53:30 UTC (rev 47593)
@@ -683,8 +683,8 @@
 {
 	struct localLink *link = vlink;
 
-	/* for a generic API general error checks here is fine but
-	 * the use here they will never be NULL */
+	/* for a generic API error checks here is fine but
+	 * the limited use here they will never be NULL */
 #if 0
 	if (link == NULL) return;
 	if (listbase == NULL) return;
@@ -702,8 +702,8 @@
 {
 	struct localLink *link = vlink;
 
-	/* for a generic API general error checks here is fine but
-	 * the use here they will never be NULL */
+	/* for a generic API error checks here is fine but
+	 * the limited use here they will never be NULL */
 #if 0
 	if (link == NULL) return;
 	if (listbase == NULL) return;

Modified: trunk/blender/intern/raskter/raskter.c
===================================================================
--- trunk/blender/intern/raskter/raskter.c	2012-06-08 05:46:00 UTC (rev 47592)
+++ trunk/blender/intern/raskter/raskter.c	2012-06-08 05:53:30 UTC (rev 47593)
@@ -189,7 +189,8 @@
 	 * If the number of verts specified to render as a polygon is less than 3,
 	 * return immediately. Obviously we cant render a poly with sides < 3. The
 	 * return for this we set to 1, simply so it can be distinguished from the
-	 * next place we could return, /home/guest/blender-svn/soc-2011-tomato/intern/raskter/raskter.cwhich is a failure to allocate memory.
+	 * next place we could return, /home/guest/blender-svn/soc-2011-tomato/intern/raskter/raskter.
+	 * which is a failure to allocate memory.
 	 */
 	if (num_verts < 3) {
 		return(1);
@@ -384,8 +385,8 @@
 int PLX_raskterize(float (*base_verts)[2], int num_base_verts,
                    float *buf, int buf_x, int buf_y)
 {
-	int i;                                       /* i: Loop counter. */
-	struct poly_vert *ply;                       /* ply: Pointer to a list of integer buffer-space vertex coordinates. */
+	int i;                                   /* i: Loop counter. */
+	struct poly_vert *ply;                   /* ply: Pointer to a list of integer buffer-space vertex coordinates. */
 	struct r_fill_context ctx = {0};
 
 	/*

Modified: trunk/blender/source/blender/editors/space_outliner/outliner_tools.c
===================================================================
--- trunk/blender/source/blender/editors/space_outliner/outliner_tools.c	2012-06-08 05:46:00 UTC (rev 47592)
+++ trunk/blender/source/blender/editors/space_outliner/outliner_tools.c	2012-06-08 05:53:30 UTC (rev 47593)
@@ -651,7 +651,7 @@
 	{0, "UNLINK",   0, "Unlink Group", ""},
 	{1, "LOCAL",    0, "Make Local Group", ""},
 	{2, "LINK",     0, "Link Group Objects to Scene", ""},
-	{3, "INSTANCE", 0, "Instance Group in Scene", ""},
+	{3, "INSTANCE", 0, "Instance Groups in Scene", ""},
 	{4, "TOGVIS",   0, "Toggle Visible Group", ""},
 	{5, "TOGSEL",   0, "Toggle Selectable", ""},
 	{6, "TOGREN",   0, "Toggle Renderable", ""},




More information about the Bf-blender-cvs mailing list