[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [54658] trunk/blender/source/blender/ editors/curve/editcurve.c: Style tweak - missing braces

Joshua Leung aligorith at gmail.com
Tue Feb 19 11:31:30 CET 2013


Revision: 54658
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=54658
Author:   aligorith
Date:     2013-02-19 10:31:29 +0000 (Tue, 19 Feb 2013)
Log Message:
-----------
Style tweak - missing braces

Modified Paths:
--------------
    trunk/blender/source/blender/editors/curve/editcurve.c

Modified: trunk/blender/source/blender/editors/curve/editcurve.c
===================================================================
--- trunk/blender/source/blender/editors/curve/editcurve.c	2013-02-19 10:10:09 UTC (rev 54657)
+++ trunk/blender/source/blender/editors/curve/editcurve.c	2013-02-19 10:31:29 UTC (rev 54658)
@@ -2034,11 +2034,12 @@
 	EditNurb *editnurb = cu->editnurb;
 	Nurb *nu;
 
-	for (nu = editnurb->nurbs.first; nu; nu = nu->next)
+	for (nu = editnurb->nurbs.first; nu; nu = nu->next) {
 		if (isNurbsel(nu)) {
 			BKE_nurb_direction_switch(nu);
 			keyData_switchDirectionNurb(cu, nu);
 		}
+	}
 
 	if (ED_curve_updateAnimPaths(obedit->data))
 		WM_event_add_notifier(C, NC_OBJECT | ND_KEYS, obedit);




More information about the Bf-blender-cvs mailing list