[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [13150] trunk/blender/source/blender/ makesdna/DNA_action_types.h: Code cleanup - removed unused var that I forgot to remove from bPose struct

Joshua Leung aligorith at gmail.com
Mon Jan 7 06:56:44 CET 2008


Revision: 13150
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=13150
Author:   aligorith
Date:     2008-01-07 06:56:41 +0100 (Mon, 07 Jan 2008)

Log Message:
-----------
Code cleanup - removed unused var that I forgot to remove from bPose struct

Modified Paths:
--------------
    trunk/blender/source/blender/makesdna/DNA_action_types.h

Modified: trunk/blender/source/blender/makesdna/DNA_action_types.h
===================================================================
--- trunk/blender/source/blender/makesdna/DNA_action_types.h	2008-01-07 03:25:11 UTC (rev 13149)
+++ trunk/blender/source/blender/makesdna/DNA_action_types.h	2008-01-07 05:56:41 UTC (rev 13150)
@@ -90,7 +90,6 @@
  */
 typedef struct bPose {
 	ListBase chanbase; 			/* list of pose channels */
-	struct bAction *poselib;	/* poselib-action for this pose */
 	
 	short flag, proxy_layer;	/* proxy layer: copy from armature, gets synced */
 	
@@ -104,6 +103,7 @@
  */
 typedef struct bActionChannel {
 	struct bActionChannel	*next, *prev;
+	
 	struct Ipo				*ipo;					/* IPO block this action channel references */
 	ListBase				constraintChannels;		/* Constraint Channels (when Action Channel represents an Object or Bone) */
 	





More information about the Bf-blender-cvs mailing list