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>2005-12-13 23:32:39 +0300
committerTon Roosendaal <ton@blender.org>2005-12-13 23:32:39 +0300
commit4f235db6e6480881677678e2a9d4bc362d690bee (patch)
tree4d560b27550bb597f3d7b6d6a646577f2707ec19 /source/blender/src/editarmature.c
parent904a478d9d7b7b633356ad638e4291ff79bbd067 (diff)
parentd1cc4b7a15efaeea5de1f70762c3507572fe186d (diff)
Tuesday merger of Orange branch with bf-blender
Diffstat (limited to 'source/blender/src/editarmature.c')
-rw-r--r--source/blender/src/editarmature.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/editarmature.c b/source/blender/src/editarmature.c
index 22490645799..c1d892bfc35 100644
--- a/source/blender/src/editarmature.c
+++ b/source/blender/src/editarmature.c
@@ -111,7 +111,7 @@ extern float centre[3], centroid[3]; /* Originally defined in editobject.c */
/* **************** tools on Editmode Armature **************** */
/* converts Bones to EditBone list, used for tools as well */
-static void make_boneList(ListBase* list, ListBase *bones, EditBone *parent)
+void make_boneList(ListBase* list, ListBase *bones, EditBone *parent)
{
EditBone *eBone;
Bone *curBone;
@@ -228,7 +228,7 @@ static void fix_bonelist_roll (ListBase *bonelist, ListBase *editbonelist)
}
/* converts the editbones back to the armature */
-static void editbones_to_armature (ListBase *list, Object *ob)
+void editbones_to_armature (ListBase *list, Object *ob)
{
bArmature *arm;
EditBone *eBone;