Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2008-01-07 08:56:41 +0300
committerJoshua Leung <aligorith@gmail.com>2008-01-07 08:56:41 +0300
commitae15a0410544563f2c3c6fe977b1f2eeef6d0574 (patch)
tree4be6395a4f7774a50e49d6e160439fed5a5bbeb4 /source/blender/makesdna/DNA_action_types.h
parente6ee8c7d49a66d2adab634047631819050d5e8b9 (diff)
Code cleanup - removed unused var that I forgot to remove from bPose struct
Diffstat (limited to 'source/blender/makesdna/DNA_action_types.h')
-rw-r--r--source/blender/makesdna/DNA_action_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_action_types.h b/source/blender/makesdna/DNA_action_types.h
index 7ec81cfcf35..1f591894a90 100644
--- a/source/blender/makesdna/DNA_action_types.h
+++ b/source/blender/makesdna/DNA_action_types.h
@@ -90,7 +90,6 @@ typedef struct bPoseChannel {
*/
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 bPose {
*/
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) */