[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [61078] trunk/blender/source/blender/ blenkernel/intern/fcurve.c: code cleanup: whicespace

Campbell Barton ideasman42 at gmail.com
Mon Nov 4 06:51:45 CET 2013


Revision: 61078
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=61078
Author:   campbellbarton
Date:     2013-11-04 05:51:44 +0000 (Mon, 04 Nov 2013)
Log Message:
-----------
code cleanup: whicespace

Modified Paths:
--------------
    trunk/blender/source/blender/blenkernel/intern/fcurve.c

Modified: trunk/blender/source/blender/blenkernel/intern/fcurve.c
===================================================================
--- trunk/blender/source/blender/blenkernel/intern/fcurve.c	2013-11-04 04:18:28 UTC (rev 61077)
+++ trunk/blender/source/blender/blenkernel/intern/fcurve.c	2013-11-04 05:51:44 UTC (rev 61078)
@@ -2155,21 +2155,21 @@
 			for (fcm = fcu->modifiers.first; fcm; fcm = fcm->next) {
 				/* if there are range-restrictions, we must definitely block [#36950] */
 				if ((fcm->flag & FMODIFIER_FLAG_RANGERESTRICT) == 0 ||
-		    		((fcm->sfra <= evaltime) && (fcm->efra >= evaltime)) )
-		    	{
-		    		/* within range: here it probably doesn't matter, though we'd want to check on additive... */	
-		    	}
-		    	else {
-		    		/* outside range: modifier shouldn't contribute to the curve here, though it does in other areas,
+				    ((fcm->sfra <= evaltime) && (fcm->efra >= evaltime)) )
+				{
+					/* within range: here it probably doesn't matter, though we'd want to check on additive... */
+				}
+				else {
+					/* outside range: modifier shouldn't contribute to the curve here, though it does in other areas,
 					 * so neither should the driver!
 					 */
 					do_linear = false;
-		    	}
+				}
 			}
 			
 			/* only copy over results if none of the modifiers disagreed with this */
 			if (do_linear) {
-				cvalue = evaltime;	
+				cvalue = evaltime;
 			}
 		}
 	}




More information about the Bf-blender-cvs mailing list