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-05-23 15:12:03 +0400
committerJoshua Leung <aligorith@gmail.com>2008-05-23 15:12:03 +0400
commit18abce25e5e53a284818d1ebbb5ee5a7eecaa339 (patch)
treed50d90e312cc8b957f1ae57b09c46284c130f6f9 /source/blender/src/editconstraint.c
parent02c4866d040d4cc695cae5e6afe4b0c2f1100df6 (diff)
Typos and whitespace tweaks
Diffstat (limited to 'source/blender/src/editconstraint.c')
-rw-r--r--source/blender/src/editconstraint.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/src/editconstraint.c b/source/blender/src/editconstraint.c
index 653e74c70b4..0ad58a5ce4b 100644
--- a/source/blender/src/editconstraint.c
+++ b/source/blender/src/editconstraint.c
@@ -681,7 +681,7 @@ static void test_constraints (Object *owner, const char substring[])
Bone *bone;
bPoseChannel *chan;
- bone = get_named_bone( ((bArmature *)owner->data ), substring );
+ bone = get_named_bone( ((bArmature *)owner->data), substring );
chan = get_pose_channel(owner->pose, substring);
if (bone && chan) {
conlist = &chan->constraints;
@@ -831,9 +831,9 @@ static void test_bonelist_constraints (Object *owner, ListBase *list)
{
Bone *bone;
- for (bone = list->first; bone; bone=bone->next) {
+ for (bone = list->first; bone; bone = bone->next) {
test_constraints(owner, bone->name);
- test_bonelist_constraints (owner, &bone->childbase);
+ test_bonelist_constraints(owner, &bone->childbase);
}
}
@@ -845,7 +845,7 @@ void object_test_constraints (Object *owner)
bArmature *arm= get_armature(owner);
if (arm)
- test_bonelist_constraints (owner, &arm->bonebase);
+ test_bonelist_constraints(owner, &arm->bonebase);
}
}