fix T58568: used wrong case in variable name

This commit is contained in:
Gaia Clary 2018-12-04 20:28:20 +01:00
parent 10c50d7dbf
commit 22bba02bc8
Notes: blender-bot 2023-02-14 08:24:03 +01:00
Referenced by issue #58568, Add support for opencollada >= 1.6.65
2 changed files with 2 additions and 2 deletions

View File

@ -1352,7 +1352,7 @@ bool DocumentImporter::writeAnimationList(const COLLADAFW::AnimationList *animat
#if OPENCOLLADA_WITH_ANIMATION_CLIP
// Since opencollada 1.6.68
// called on post-process stage after writeVisualScenes
bool DocumentImporter::writeAnimationClip(const COLLADAFW::AnimationClip *AnimationClip)
bool DocumentImporter::writeAnimationClip(const COLLADAFW::AnimationClip *animationClip)
{
if (mImportStage != General)
return true;

View File

@ -108,7 +108,7 @@ public:
#if OPENCOLLADA_WITH_ANIMATION_CLIP
// Please enable this when building with Collada 1.6.65 or newer (also in DocumentImporter.cpp)
bool DocumentImporter::writeAnimationClip(const COLLADAFW::AnimationClip *AnimationClip);
bool DocumentImporter::writeAnimationClip(const COLLADAFW::AnimationClip *animationClip);
#endif
bool writeGeometry(const COLLADAFW::Geometry*);