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:
authorTon Roosendaal <ton@blender.org>2009-01-17 17:56:12 +0300
committerTon Roosendaal <ton@blender.org>2009-01-17 17:56:12 +0300
commitf705bdaa8903f4447072e31700500ce293a2c059 (patch)
tree9c85cff8aaf7d52f36f661c6b2e227156b5d92a2 /source/blender/editors/space_view3d/drawarmature.c
parent932131be53cfe8c5068d9cc7b938544df63de0c3 (diff)
2.5
Cleanup warnings from Joshua's commit (mostly unused variables, but also used functions that were not prototyped). Two bugfixes; passing on &ob->adt instead of ob->adt But; the DNA system is now messed up, with two structs using the same ID (nAction and bAction), that goes horrible wrong!
Diffstat (limited to 'source/blender/editors/space_view3d/drawarmature.c')
-rw-r--r--source/blender/editors/space_view3d/drawarmature.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_view3d/drawarmature.c b/source/blender/editors/space_view3d/drawarmature.c
index 16372791736..3556e27bbb7 100644
--- a/source/blender/editors/space_view3d/drawarmature.c
+++ b/source/blender/editors/space_view3d/drawarmature.c
@@ -2024,8 +2024,8 @@ static void draw_pose_paths(Scene *scene, View3D *v3d, Object *ob)
{
bArmature *arm= ob->data;
bPoseChannel *pchan;
- bAction *act; // XXX old animsys - watch it!
- bActionChannel *achan;
+ // bAction *act; // XXX old animsys - watch it!
+ // bActionChannel *achan;
ActKeyColumn *ak;
ListBase keys;
float *fp, *fp_start;