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:
authorThomas Dinges <blender@dingto.org>2010-08-01 20:35:27 +0400
committerThomas Dinges <blender@dingto.org>2010-08-01 20:35:27 +0400
commit4e031236d561e23a53965d3f333545265f1961e4 (patch)
tree44e11fec5ca04de6369c3662e14aa137e93d9be3 /source/blender/collada/DocumentImporter.cpp
parent4da55eed8fe4150266742f35a4faadf51d9c5991 (diff)
Compile fix for recent changes. Function needed 1 more argument.
Chingiz can you please check?
Diffstat (limited to 'source/blender/collada/DocumentImporter.cpp')
-rw-r--r--source/blender/collada/DocumentImporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/DocumentImporter.cpp b/source/blender/collada/DocumentImporter.cpp
index 2f1568f7fda..ab246aedee0 100644
--- a/source/blender/collada/DocumentImporter.cpp
+++ b/source/blender/collada/DocumentImporter.cpp
@@ -615,7 +615,7 @@ private:
Main *bmain = CTX_data_main(C);
Scene *scene = CTX_data_scene(C);
- ModifierData *md = ED_object_modifier_add(NULL, scene, ob, NULL, eModifierType_Armature);
+ ModifierData *md = ED_object_modifier_add(NULL, NULL, scene, ob, NULL, eModifierType_Armature);
((ArmatureModifierData *)md)->object = ob_arm;
copy_m4_m4(ob->obmat, bind_shape_matrix);