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>2020-02-20 02:07:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-20 03:22:14 +0300
commita74f0dc0e306d79d8a6de5277538d7333132fc34 (patch)
treeeae25a4f49272ca88a9123d6bc891dbbc7204554 /source/blender/collada/collada_utils.h
parent6f5ef60f1b50fef4737b0530bee5c4770be24403 (diff)
Cleanup: declatatuons for functions that don't exist
Diffstat (limited to 'source/blender/collada/collada_utils.h')
-rw-r--r--source/blender/collada/collada_utils.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/collada/collada_utils.h b/source/blender/collada/collada_utils.h
index b313fcd6e66..5c5e1415422 100644
--- a/source/blender/collada/collada_utils.h
+++ b/source/blender/collada/collada_utils.h
@@ -119,13 +119,6 @@ inline bAction *bc_getSceneMaterialAction(Material *ma)
return (ma->adt && ma->adt->action) ? ma->adt->action : NULL;
}
-inline void bc_setSceneObjectAction(bAction *action, Object *ob)
-{
- if (ob->adt) {
- ob->adt->action = action;
- }
-}
-
std::string bc_get_action_id(std::string action_name,
std::string ob_name,
std::string channel_type,