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:
authorCampbell Barton <ideasman42@gmail.com>2011-02-27 11:31:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-27 11:31:10 +0300
commit2e5eb4152262adfc382860073dc5e73ced187e35 (patch)
tree3589c86b41a503b729c5a82462ad599a14fed4f3 /source/blender/editors/armature
parentf73c993b16c4083f0c72b87ba3f70fa12a5077df (diff)
pedantic warning cleanup, also remove texspace_edit() since its been added using a different method.
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/BIF_retarget.h4
-rw-r--r--source/blender/editors/armature/editarmature_retarget.c6
-rw-r--r--source/blender/editors/armature/poselib.c2
3 files changed, 8 insertions, 4 deletions
diff --git a/source/blender/editors/armature/BIF_retarget.h b/source/blender/editors/armature/BIF_retarget.h
index fe0ac53cfaf..8f2b32844b5 100644
--- a/source/blender/editors/armature/BIF_retarget.h
+++ b/source/blender/editors/armature/BIF_retarget.h
@@ -160,5 +160,9 @@ void RIG_freeRigGraph(BGraph *rg);
/* UNUSED */
void BIF_retargetArmature(bContext *C);
void BIF_adjustRetarget(bContext *C);
+/* UNUSED / print funcs */
+void RIG_printArc(struct RigGraph *rg, struct RigArc *arc);
+void RIG_printGraph(struct RigGraph *rg);
+void RIG_printArcBones(struct RigArc *arc);
#endif /* BIF_RETARGET_H */
diff --git a/source/blender/editors/armature/editarmature_retarget.c b/source/blender/editors/armature/editarmature_retarget.c
index 86df851424c..291a91b3ae0 100644
--- a/source/blender/editors/armature/editarmature_retarget.c
+++ b/source/blender/editors/armature/editarmature_retarget.c
@@ -1429,7 +1429,7 @@ static void RIG_printNode(RigNode *node, const char name[])
}
}
-static void RIG_printArcBones(RigArc *arc)
+void RIG_printArcBones(RigArc *arc)
{
RigEdge *edge;
@@ -1480,7 +1480,7 @@ static void RIG_printLinkedCtrl(RigGraph *rg, EditBone *bone, int tabs)
}
}
-static void RIG_printArc(RigGraph *rg, RigArc *arc)
+void RIG_printArc(RigGraph *rg, RigArc *arc)
{
RigEdge *edge;
@@ -1502,7 +1502,7 @@ static void RIG_printArc(RigGraph *rg, RigArc *arc)
RIG_printNode((RigNode*)arc->tail, "tail");
}
-static void RIG_printGraph(RigGraph *rg)
+void RIG_printGraph(RigGraph *rg)
{
RigArc *arc;
diff --git a/source/blender/editors/armature/poselib.c b/source/blender/editors/armature/poselib.c
index 13a8cef3d07..35b0be9c825 100644
--- a/source/blender/editors/armature/poselib.c
+++ b/source/blender/editors/armature/poselib.c
@@ -531,7 +531,7 @@ static int poselib_remove_exec (bContext *C, wmOperator *op)
/* remove relevant keyframes */
for (fcu= act->curves.first; fcu; fcu= fcu->next) {
BezTriple *bezt;
- int i;
+ unsigned int i;
if (fcu->bezt) {
for (i=0, bezt=fcu->bezt; i < fcu->totvert; i++, bezt++) {