diff --git a/source/blender/animrig/intern/animdata.cc b/source/blender/animrig/intern/animdata.cc index ef82e27cd75..4588154dbea 100644 --- a/source/blender/animrig/intern/animdata.cc +++ b/source/blender/animrig/intern/animdata.cc @@ -9,7 +9,7 @@ #include "ANIM_animdata.hh" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_fcurve.h" #include "BKE_lib_id.hh" diff --git a/source/blender/animrig/intern/keyframing.cc b/source/blender/animrig/intern/keyframing.cc index 4edcd334bb9..03c5d1490f1 100644 --- a/source/blender/animrig/intern/keyframing.cc +++ b/source/blender/animrig/intern/keyframing.cc @@ -18,7 +18,7 @@ #include "ANIM_visualkey.hh" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_fcurve.h" #include "BKE_idtype.hh" diff --git a/source/blender/blenkernel/BKE_anim_data.h b/source/blender/blenkernel/BKE_anim_data.hh similarity index 61% rename from source/blender/blenkernel/BKE_anim_data.h rename to source/blender/blenkernel/BKE_anim_data.hh index 5604ebb1803..667ef2c9ead 100644 --- a/source/blender/blenkernel/BKE_anim_data.h +++ b/source/blender/blenkernel/BKE_anim_data.hh @@ -10,10 +10,6 @@ #include "BLI_sys_types.h" /* for bool */ -#ifdef __cplusplus -extern "C" { -#endif - struct AnimData; struct BlendDataReader; struct BlendLibReader; @@ -31,17 +27,17 @@ struct bAction; * Check if the given ID-block can have AnimData. */ bool id_type_can_have_animdata(short id_type); -bool id_can_have_animdata(const struct ID *id); +bool id_can_have_animdata(const ID *id); /** * Get #AnimData from the given ID-block. */ -struct AnimData *BKE_animdata_from_id(const struct ID *id); +AnimData *BKE_animdata_from_id(const ID *id); /** * Ensure #AnimData exists in the given ID-block (when supported). */ -struct AnimData *BKE_animdata_ensure_id(struct ID *id); +AnimData *BKE_animdata_ensure_id(ID *id); /** * Set active action used by AnimData from the given ID-block. @@ -55,36 +51,36 @@ struct AnimData *BKE_animdata_ensure_id(struct ID *id); * * \return true when the action was successfully updated, false otherwise. */ -bool BKE_animdata_set_action(struct ReportList *reports, struct ID *id, struct bAction *act); +bool BKE_animdata_set_action(ReportList *reports, ID *id, bAction *act); /** * Same as BKE_animdata_set_action(), except sets `tmpact` instead of `action`. */ -bool BKE_animdata_set_tmpact(struct ReportList *reports, struct ID *id, struct bAction *act); +bool BKE_animdata_set_tmpact(ReportList *reports, ID *id, bAction *act); -bool BKE_animdata_action_editable(const struct AnimData *adt); +bool BKE_animdata_action_editable(const AnimData *adt); /** * Ensure that the action's idroot is set correctly given the ID type of the owner. * Return true if it is, false if it was already set to an incompatible type. */ -bool BKE_animdata_action_ensure_idroot(const struct ID *owner, struct bAction *action); +bool BKE_animdata_action_ensure_idroot(const ID *owner, bAction *action); /** * Free AnimData used by the nominated ID-block, and clear ID-block's AnimData pointer. */ -void BKE_animdata_free(struct ID *id, bool do_id_user); +void BKE_animdata_free(ID *id, bool do_id_user); /** * Return true if the ID-block has non-empty AnimData. */ -bool BKE_animdata_id_is_animated(const struct ID *id); +bool BKE_animdata_id_is_animated(const ID *id); /** * Callback used by lib_query to walk over all ID usages * (mimics `foreach_id` callback of #IDTypeInfo structure). */ -void BKE_animdata_foreach_id(struct AnimData *adt, struct LibraryForeachIDData *data); +void BKE_animdata_foreach_id(AnimData *adt, LibraryForeachIDData *data); /** * Make a copy of the given AnimData - to be used when copying data-blocks. @@ -92,21 +88,21 @@ void BKE_animdata_foreach_id(struct AnimData *adt, struct LibraryForeachIDData * * see LIB_ID_CREATE_.../LIB_ID_COPY_... flags in BKE_lib_id.hh * \return The copied animdata. */ -struct AnimData *BKE_animdata_copy(struct Main *bmain, struct AnimData *adt, int flag); +AnimData *BKE_animdata_copy(Main *bmain, AnimData *adt, int flag); /** * \param flag: Control ID pointers management, * see LIB_ID_CREATE_.../LIB_ID_COPY_... flags in BKE_lib_id.hh * \return true is successfully copied. */ -bool BKE_animdata_copy_id(struct Main *bmain, struct ID *id_to, struct ID *id_from, int flag); +bool BKE_animdata_copy_id(Main *bmain, ID *id_to, ID *id_from, int flag); /** * Copy AnimData Actions. */ -void BKE_animdata_copy_id_action(struct Main *bmain, struct ID *id); +void BKE_animdata_copy_id_action(Main *bmain, ID *id); -void BKE_animdata_duplicate_id_action(struct Main *bmain, struct ID *id, uint duplicate_flags); +void BKE_animdata_duplicate_id_action(Main *bmain, ID *id, uint duplicate_flags); /* Merge copies of data from source AnimData block */ typedef enum eAnimData_MergeCopy_Modes { @@ -123,15 +119,8 @@ typedef enum eAnimData_MergeCopy_Modes { /** * Merge copies of the data from the src AnimData into the destination AnimData. */ -void BKE_animdata_merge_copy(struct Main *bmain, - struct ID *dst_id, - struct ID *src_id, - eAnimData_MergeCopy_Modes action_mode, - bool fix_drivers); +void BKE_animdata_merge_copy( + Main *bmain, ID *dst_id, ID *src_id, eAnimData_MergeCopy_Modes action_mode, bool fix_drivers); -void BKE_animdata_blend_write(struct BlendWriter *writer, struct ID *id); -void BKE_animdata_blend_read_data(struct BlendDataReader *reader, struct ID *id); - -#ifdef __cplusplus -} -#endif +void BKE_animdata_blend_write(BlendWriter *writer, ID *id); +void BKE_animdata_blend_read_data(BlendDataReader *reader, ID *id); diff --git a/source/blender/blenkernel/CMakeLists.txt b/source/blender/blenkernel/CMakeLists.txt index 5aa60942e2e..c409c52e9d3 100644 --- a/source/blender/blenkernel/CMakeLists.txt +++ b/source/blender/blenkernel/CMakeLists.txt @@ -324,7 +324,7 @@ set(SRC BKE_action.h BKE_action.hh BKE_addon.h - BKE_anim_data.h + BKE_anim_data.hh BKE_anim_path.h BKE_anim_visualization.h BKE_animsys.h diff --git a/source/blender/blenkernel/intern/action.cc b/source/blender/blenkernel/intern/action.cc index 49ecdb71169..994e256b73e 100644 --- a/source/blender/blenkernel/intern/action.cc +++ b/source/blender/blenkernel/intern/action.cc @@ -35,7 +35,7 @@ #include "BLT_translation.hh" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_anim_visualization.h" #include "BKE_animsys.h" #include "BKE_armature.hh" diff --git a/source/blender/blenkernel/intern/anim_data.cc b/source/blender/blenkernel/intern/anim_data.cc index 143786de75c..43c457d333e 100644 --- a/source/blender/blenkernel/intern/anim_data.cc +++ b/source/blender/blenkernel/intern/anim_data.cc @@ -10,7 +10,7 @@ #include #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_context.hh" #include "BKE_fcurve.h" diff --git a/source/blender/blenkernel/intern/anim_sys.cc b/source/blender/blenkernel/intern/anim_sys.cc index 073847769a3..88b87f18efe 100644 --- a/source/blender/blenkernel/intern/anim_sys.cc +++ b/source/blender/blenkernel/intern/anim_sys.cc @@ -36,7 +36,7 @@ #include "DNA_world_types.h" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_context.hh" #include "BKE_fcurve.h" diff --git a/source/blender/blenkernel/intern/armature.cc b/source/blender/blenkernel/intern/armature.cc index 1e2ab9e7f50..6573ae5e9b2 100644 --- a/source/blender/blenkernel/intern/armature.cc +++ b/source/blender/blenkernel/intern/armature.cc @@ -38,7 +38,7 @@ #include "DNA_scene_types.h" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_anim_visualization.h" #include "BKE_armature.hh" #include "BKE_constraint.h" diff --git a/source/blender/blenkernel/intern/collection.cc b/source/blender/blenkernel/intern/collection.cc index b3e38d602a8..e2b03a973ab 100644 --- a/source/blender/blenkernel/intern/collection.cc +++ b/source/blender/blenkernel/intern/collection.cc @@ -20,7 +20,7 @@ #include "BLI_threads.h" #include "BLT_translation.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_collection.hh" #include "BKE_idprop.h" #include "BKE_idtype.hh" diff --git a/source/blender/blenkernel/intern/curves.cc b/source/blender/blenkernel/intern/curves.cc index 38e7d9d9e66..55bd587d0a4 100644 --- a/source/blender/blenkernel/intern/curves.cc +++ b/source/blender/blenkernel/intern/curves.cc @@ -25,7 +25,7 @@ #include "BLI_utildefines.h" #include "BLI_vector.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_curves.hh" #include "BKE_geometry_fields.hh" #include "BKE_geometry_set.hh" diff --git a/source/blender/blenkernel/intern/fcurve.cc b/source/blender/blenkernel/intern/fcurve.cc index 82d46921877..73589fcdd19 100644 --- a/source/blender/blenkernel/intern/fcurve.cc +++ b/source/blender/blenkernel/intern/fcurve.cc @@ -28,7 +28,7 @@ #include "BLT_translation.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_context.hh" #include "BKE_curve.hh" diff --git a/source/blender/blenkernel/intern/gpencil_legacy.cc b/source/blender/blenkernel/intern/gpencil_legacy.cc index a4f38517481..649de3a27d9 100644 --- a/source/blender/blenkernel/intern/gpencil_legacy.cc +++ b/source/blender/blenkernel/intern/gpencil_legacy.cc @@ -34,7 +34,7 @@ #include "DNA_space_types.h" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_collection.hh" #include "BKE_colortools.hh" #include "BKE_deform.hh" diff --git a/source/blender/blenkernel/intern/grease_pencil.cc b/source/blender/blenkernel/intern/grease_pencil.cc index 96924279eb5..5abd216f23f 100644 --- a/source/blender/blenkernel/intern/grease_pencil.cc +++ b/source/blender/blenkernel/intern/grease_pencil.cc @@ -9,7 +9,7 @@ #include #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_curves.hh" #include "BKE_customdata.hh" #include "BKE_deform.hh" diff --git a/source/blender/blenkernel/intern/grease_pencil_convert_legacy.cc b/source/blender/blenkernel/intern/grease_pencil_convert_legacy.cc index 9ee1a4c2217..716eca63f89 100644 --- a/source/blender/blenkernel/intern/grease_pencil_convert_legacy.cc +++ b/source/blender/blenkernel/intern/grease_pencil_convert_legacy.cc @@ -8,7 +8,7 @@ #include -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_attribute.hh" #include "BKE_colorband.hh" #include "BKE_colortools.hh" diff --git a/source/blender/blenkernel/intern/ipo.cc b/source/blender/blenkernel/intern/ipo.cc index 19fe229899b..9128ab29a9d 100644 --- a/source/blender/blenkernel/intern/ipo.cc +++ b/source/blender/blenkernel/intern/ipo.cc @@ -44,7 +44,7 @@ #include "BLT_translation.hh" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_fcurve.h" #include "BKE_fcurve_driver.h" #include "BKE_global.hh" diff --git a/source/blender/blenkernel/intern/key.cc b/source/blender/blenkernel/intern/key.cc index bc5811abfee..4749fc1138e 100644 --- a/source/blender/blenkernel/intern/key.cc +++ b/source/blender/blenkernel/intern/key.cc @@ -34,7 +34,7 @@ #include "DNA_object_types.h" #include "DNA_scene_types.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_curve.hh" #include "BKE_customdata.hh" #include "BKE_deform.hh" diff --git a/source/blender/blenkernel/intern/lib_id.cc b/source/blender/blenkernel/intern/lib_id.cc index 70bbcb57df7..6b906db4af2 100644 --- a/source/blender/blenkernel/intern/lib_id.cc +++ b/source/blender/blenkernel/intern/lib_id.cc @@ -40,7 +40,7 @@ #include "BLT_translation.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_armature.hh" #include "BKE_asset.hh" #include "BKE_bpath.hh" diff --git a/source/blender/blenkernel/intern/lib_id_delete.cc b/source/blender/blenkernel/intern/lib_id_delete.cc index 829b2c4b794..70493f41bbf 100644 --- a/source/blender/blenkernel/intern/lib_id_delete.cc +++ b/source/blender/blenkernel/intern/lib_id_delete.cc @@ -20,7 +20,7 @@ #include "BLI_set.hh" #include "BLI_vector.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_asset.hh" #include "BKE_idprop.h" #include "BKE_idtype.hh" diff --git a/source/blender/blenkernel/intern/lib_override.cc b/source/blender/blenkernel/intern/lib_override.cc index 8529b193b69..7a33621dd02 100644 --- a/source/blender/blenkernel/intern/lib_override.cc +++ b/source/blender/blenkernel/intern/lib_override.cc @@ -25,7 +25,7 @@ #include "DEG_depsgraph.hh" #include "DEG_depsgraph_build.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_armature.hh" #include "BKE_blender.hh" #include "BKE_collection.hh" diff --git a/source/blender/blenkernel/intern/lib_query.cc b/source/blender/blenkernel/intern/lib_query.cc index 60480d63bc8..d5e6beb8b01 100644 --- a/source/blender/blenkernel/intern/lib_query.cc +++ b/source/blender/blenkernel/intern/lib_query.cc @@ -17,7 +17,7 @@ #include "BLI_set.hh" #include "BLI_utildefines.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_idprop.h" #include "BKE_idtype.hh" #include "BKE_lib_id.hh" diff --git a/source/blender/blenkernel/intern/mask.cc b/source/blender/blenkernel/intern/mask.cc index 8947144bd8c..b4f922d75a0 100644 --- a/source/blender/blenkernel/intern/mask.cc +++ b/source/blender/blenkernel/intern/mask.cc @@ -32,7 +32,7 @@ #include "BKE_curve.hh" #include "BKE_idtype.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_image.h" #include "BKE_lib_id.hh" #include "BKE_lib_query.hh" diff --git a/source/blender/blenkernel/intern/material.cc b/source/blender/blenkernel/intern/material.cc index a07e3881b61..fcfdebc4058 100644 --- a/source/blender/blenkernel/intern/material.cc +++ b/source/blender/blenkernel/intern/material.cc @@ -44,7 +44,7 @@ #include "BLT_translation.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_attribute.hh" #include "BKE_brush.hh" #include "BKE_curve.hh" diff --git a/source/blender/blenkernel/intern/mesh.cc b/source/blender/blenkernel/intern/mesh.cc index d48143f2659..fc0aa03e2cb 100644 --- a/source/blender/blenkernel/intern/mesh.cc +++ b/source/blender/blenkernel/intern/mesh.cc @@ -42,7 +42,7 @@ #include "BLT_translation.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_attribute.hh" #include "BKE_bake_data_block_id.hh" #include "BKE_bpath.hh" diff --git a/source/blender/blenkernel/intern/node.cc b/source/blender/blenkernel/intern/node.cc index 6cae6ac5f9d..7b4132f9b29 100644 --- a/source/blender/blenkernel/intern/node.cc +++ b/source/blender/blenkernel/intern/node.cc @@ -51,7 +51,7 @@ #include "IMB_imbuf.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_asset.hh" #include "BKE_bpath.hh" diff --git a/source/blender/blenkernel/intern/node_tree_update.cc b/source/blender/blenkernel/intern/node_tree_update.cc index 743340958f4..e4bdc866191 100644 --- a/source/blender/blenkernel/intern/node_tree_update.cc +++ b/source/blender/blenkernel/intern/node_tree_update.cc @@ -14,7 +14,7 @@ #include "DNA_modifier_types.h" #include "DNA_node_types.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_image.h" #include "BKE_main.hh" #include "BKE_node.hh" diff --git a/source/blender/blenkernel/intern/object.cc b/source/blender/blenkernel/intern/object.cc index 40eb0cafe7b..adb0ac9dff3 100644 --- a/source/blender/blenkernel/intern/object.cc +++ b/source/blender/blenkernel/intern/object.cc @@ -66,7 +66,7 @@ #include "BKE_DerivedMesh.hh" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_anim_path.h" #include "BKE_anim_visualization.h" #include "BKE_animsys.h" diff --git a/source/blender/blenkernel/intern/pointcloud.cc b/source/blender/blenkernel/intern/pointcloud.cc index 36bce76869d..3ebf1bd1617 100644 --- a/source/blender/blenkernel/intern/pointcloud.cc +++ b/source/blender/blenkernel/intern/pointcloud.cc @@ -22,7 +22,7 @@ #include "BLI_utildefines.h" #include "BLI_vector.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_bake_data_block_id.hh" #include "BKE_customdata.hh" #include "BKE_geometry_set.hh" diff --git a/source/blender/blenkernel/intern/scene.cc b/source/blender/blenkernel/intern/scene.cc index c15c4a0f639..cc117c9b083 100644 --- a/source/blender/blenkernel/intern/scene.cc +++ b/source/blender/blenkernel/intern/scene.cc @@ -52,7 +52,7 @@ #include "BLT_translation.hh" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_bpath.hh" #include "BKE_collection.hh" diff --git a/source/blender/blenkernel/intern/volume.cc b/source/blender/blenkernel/intern/volume.cc index c7b01e4f4ad..ac19226b63c 100644 --- a/source/blender/blenkernel/intern/volume.cc +++ b/source/blender/blenkernel/intern/volume.cc @@ -29,7 +29,7 @@ #include "BLI_task.hh" #include "BLI_utildefines.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_bake_data_block_id.hh" #include "BKE_bpath.hh" #include "BKE_geometry_set.hh" diff --git a/source/blender/blenloader/intern/readfile.cc b/source/blender/blenloader/intern/readfile.cc index 68a2c6c1a2a..b90b9b2d9a6 100644 --- a/source/blender/blenloader/intern/readfile.cc +++ b/source/blender/blenloader/intern/readfile.cc @@ -60,7 +60,7 @@ #include "BLT_translation.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_asset.hh" #include "BKE_blender_version.h" diff --git a/source/blender/blenloader/intern/versioning_250.cc b/source/blender/blenloader/intern/versioning_250.cc index 22c97333369..148d49b6b3c 100644 --- a/source/blender/blenloader/intern/versioning_250.cc +++ b/source/blender/blenloader/intern/versioning_250.cc @@ -48,7 +48,7 @@ #include "BLI_math_rotation.h" #include "BLI_utildefines.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_anim_visualization.h" #include "BKE_armature.hh" #include "BKE_colortools.hh" diff --git a/source/blender/blenloader/intern/versioning_270.cc b/source/blender/blenloader/intern/versioning_270.cc index 27625bca6c7..f2d8ae55fca 100644 --- a/source/blender/blenloader/intern/versioning_270.cc +++ b/source/blender/blenloader/intern/versioning_270.cc @@ -46,7 +46,7 @@ #undef DNA_GENFILE_VERSIONING_MACROS -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_colortools.hh" #include "BKE_customdata.hh" diff --git a/source/blender/blenloader/intern/versioning_300.cc b/source/blender/blenloader/intern/versioning_300.cc index cb8cb0b78d2..01653bb2f92 100644 --- a/source/blender/blenloader/intern/versioning_300.cc +++ b/source/blender/blenloader/intern/versioning_300.cc @@ -55,7 +55,7 @@ #undef DNA_GENFILE_VERSIONING_MACROS #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_armature.hh" #include "BKE_asset.hh" diff --git a/source/blender/blenloader/intern/versioning_400.cc b/source/blender/blenloader/intern/versioning_400.cc index ba2acc02c7b..622b028bd5e 100644 --- a/source/blender/blenloader/intern/versioning_400.cc +++ b/source/blender/blenloader/intern/versioning_400.cc @@ -43,7 +43,7 @@ #include "BLI_string.h" #include "BLI_string_ref.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_armature.hh" #include "BKE_attribute.hh" diff --git a/source/blender/depsgraph/intern/builder/deg_builder_nodes.cc b/source/blender/depsgraph/intern/builder/deg_builder_nodes.cc index c3c29cbe977..d37e5a027dc 100644 --- a/source/blender/depsgraph/intern/builder/deg_builder_nodes.cc +++ b/source/blender/depsgraph/intern/builder/deg_builder_nodes.cc @@ -53,7 +53,7 @@ #include "DNA_world_types.h" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_armature.hh" #include "BKE_bake_geometry_nodes_modifier.hh" diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc index 17531496b4a..4c92053a120 100644 --- a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc +++ b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc @@ -56,7 +56,7 @@ #include "DNA_world_types.h" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_armature.hh" #include "BKE_collection.hh" #include "BKE_collision.h" diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations_drivers.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations_drivers.cc index 4539fb85b51..a7b74b4ddbd 100644 --- a/source/blender/depsgraph/intern/builder/deg_builder_relations_drivers.cc +++ b/source/blender/depsgraph/intern/builder/deg_builder_relations_drivers.cc @@ -16,7 +16,7 @@ #include "DNA_anim_types.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "intern/builder/deg_builder_relations.h" #include "intern/depsgraph_relation.hh" diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc index 4ba3197d2ad..2919e43f8fc 100644 --- a/source/blender/depsgraph/intern/depsgraph_tag.cc +++ b/source/blender/depsgraph/intern/depsgraph_tag.cc @@ -28,7 +28,7 @@ #include "DNA_screen_types.h" #include "DNA_windowmanager_types.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_global.hh" #include "BKE_idtype.hh" #include "BKE_lib_override.hh" diff --git a/source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc b/source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc index cc6e1fc9ef5..7cfbedabaaa 100644 --- a/source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc +++ b/source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc @@ -69,7 +69,7 @@ #endif #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_armature.hh" #include "BKE_editmesh.hh" diff --git a/source/blender/editors/animation/anim_channels_defines.cc b/source/blender/editors/animation/anim_channels_defines.cc index b2eba8a9423..84a91ae948e 100644 --- a/source/blender/editors/animation/anim_channels_defines.cc +++ b/source/blender/editors/animation/anim_channels_defines.cc @@ -51,7 +51,7 @@ #include "RNA_path.hh" #include "RNA_prototypes.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_context.hh" #include "BKE_curve.hh" diff --git a/source/blender/editors/animation/anim_channels_edit.cc b/source/blender/editors/animation/anim_channels_edit.cc index 5da8e81e907..a43ee2d10bc 100644 --- a/source/blender/editors/animation/anim_channels_edit.cc +++ b/source/blender/editors/animation/anim_channels_edit.cc @@ -29,7 +29,7 @@ #include "RNA_path.hh" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_context.hh" #include "BKE_fcurve.h" #include "BKE_global.hh" diff --git a/source/blender/editors/animation/anim_deps.cc b/source/blender/editors/animation/anim_deps.cc index 4c700981911..287e5cc5e82 100644 --- a/source/blender/editors/animation/anim_deps.cc +++ b/source/blender/editors/animation/anim_deps.cc @@ -23,7 +23,7 @@ #include "BLI_utildefines.h" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_fcurve.h" #include "BKE_gpencil_legacy.h" #include "BKE_grease_pencil.hh" diff --git a/source/blender/editors/animation/anim_filter.cc b/source/blender/editors/animation/anim_filter.cc index 1a4fb0404cc..feabf080429 100644 --- a/source/blender/editors/animation/anim_filter.cc +++ b/source/blender/editors/animation/anim_filter.cc @@ -67,7 +67,7 @@ #include "BLI_utildefines.h" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_collection.hh" #include "BKE_context.hh" #include "BKE_fcurve.h" diff --git a/source/blender/editors/animation/anim_motion_paths.cc b/source/blender/editors/animation/anim_motion_paths.cc index 4a4aa548b93..9cf8a4f65fb 100644 --- a/source/blender/editors/animation/anim_motion_paths.cc +++ b/source/blender/editors/animation/anim_motion_paths.cc @@ -20,7 +20,7 @@ #include "DNA_scene_types.h" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_main.hh" #include "BKE_scene.hh" diff --git a/source/blender/editors/animation/drivers.cc b/source/blender/editors/animation/drivers.cc index f99e4cc1524..69047b9bdda 100644 --- a/source/blender/editors/animation/drivers.cc +++ b/source/blender/editors/animation/drivers.cc @@ -18,7 +18,7 @@ #include "DNA_anim_types.h" #include "DNA_texture_types.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_context.hh" #include "BKE_fcurve.h" #include "BKE_fcurve_driver.h" diff --git a/source/blender/editors/animation/keyframing.cc b/source/blender/editors/animation/keyframing.cc index 6e93c05e290..6f4c9624cb8 100644 --- a/source/blender/editors/animation/keyframing.cc +++ b/source/blender/editors/animation/keyframing.cc @@ -23,7 +23,7 @@ #include "DNA_scene_types.h" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_armature.hh" #include "BKE_context.hh" diff --git a/source/blender/editors/armature/armature_relations.cc b/source/blender/editors/armature/armature_relations.cc index 39c33348e6c..67569d3b860 100644 --- a/source/blender/editors/armature/armature_relations.cc +++ b/source/blender/editors/armature/armature_relations.cc @@ -24,7 +24,7 @@ #include "BLT_translation.hh" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_armature.hh" #include "BKE_constraint.h" diff --git a/source/blender/editors/armature/pose_lib_2.cc b/source/blender/editors/armature/pose_lib_2.cc index f5919a58f1d..d8fc119a201 100644 --- a/source/blender/editors/armature/pose_lib_2.cc +++ b/source/blender/editors/armature/pose_lib_2.cc @@ -20,7 +20,7 @@ #include "DNA_armature_types.h" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_armature.hh" #include "BKE_context.hh" diff --git a/source/blender/editors/armature/pose_utils.cc b/source/blender/editors/armature/pose_utils.cc index f6630306d35..8183bd37a7d 100644 --- a/source/blender/editors/armature/pose_utils.cc +++ b/source/blender/editors/armature/pose_utils.cc @@ -17,7 +17,7 @@ #include "DNA_object_types.h" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_idprop.h" #include "BKE_layer.hh" #include "BKE_object.hh" diff --git a/source/blender/editors/curve/editcurve.cc b/source/blender/editors/curve/editcurve.cc index 0dde793003e..6f6e85956ba 100644 --- a/source/blender/editors/curve/editcurve.cc +++ b/source/blender/editors/curve/editcurve.cc @@ -24,7 +24,7 @@ #include "BLT_translation.hh" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_context.hh" #include "BKE_curve.hh" #include "BKE_displist.h" diff --git a/source/blender/editors/curve/editcurve_undo.cc b/source/blender/editors/curve/editcurve_undo.cc index 93be252e653..7f3aa055482 100644 --- a/source/blender/editors/curve/editcurve_undo.cc +++ b/source/blender/editors/curve/editcurve_undo.cc @@ -18,7 +18,7 @@ #include "BLI_blenlib.h" #include "BLI_ghash.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_context.hh" #include "BKE_curve.hh" #include "BKE_fcurve.h" diff --git a/source/blender/editors/gpencil_legacy/gpencil_bake_animation.cc b/source/blender/editors/gpencil_legacy/gpencil_bake_animation.cc index 6e3deb8e6a8..2f3e219da2e 100644 --- a/source/blender/editors/gpencil_legacy/gpencil_bake_animation.cc +++ b/source/blender/editors/gpencil_legacy/gpencil_bake_animation.cc @@ -17,7 +17,7 @@ #include "DNA_scene_types.h" #include "DNA_screen_types.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_context.hh" #include "BKE_duplilist.hh" #include "BKE_gpencil_geom_legacy.h" diff --git a/source/blender/editors/gpencil_legacy/gpencil_data.cc b/source/blender/editors/gpencil_legacy/gpencil_data.cc index 64764ef91c4..aee22c46ee2 100644 --- a/source/blender/editors/gpencil_legacy/gpencil_data.cc +++ b/source/blender/editors/gpencil_legacy/gpencil_data.cc @@ -37,7 +37,7 @@ #include "DNA_screen_types.h" #include "DNA_view3d_types.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_brush.hh" #include "BKE_context.hh" diff --git a/source/blender/editors/gpencil_legacy/gpencil_mesh.cc b/source/blender/editors/gpencil_legacy/gpencil_mesh.cc index e97f57e04d1..a029f0e4aea 100644 --- a/source/blender/editors/gpencil_legacy/gpencil_mesh.cc +++ b/source/blender/editors/gpencil_legacy/gpencil_mesh.cc @@ -19,7 +19,7 @@ #include "DNA_scene_types.h" #include "DNA_screen_types.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_context.hh" #include "BKE_duplilist.hh" #include "BKE_gpencil_geom_legacy.h" diff --git a/source/blender/editors/object/object_add.cc b/source/blender/editors/object/object_add.cc index e9ab0fce990..41ae217cdce 100644 --- a/source/blender/editors/object/object_add.cc +++ b/source/blender/editors/object/object_add.cc @@ -45,7 +45,7 @@ #include "BLT_translation.hh" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_armature.hh" #include "BKE_camera.h" #include "BKE_collection.hh" diff --git a/source/blender/editors/object/object_relations.cc b/source/blender/editors/object/object_relations.cc index 4b9328e2247..a56a892c6c4 100644 --- a/source/blender/editors/object/object_relations.cc +++ b/source/blender/editors/object/object_relations.cc @@ -39,7 +39,7 @@ #include "BLT_translation.hh" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_armature.hh" #include "BKE_collection.hh" #include "BKE_constraint.h" diff --git a/source/blender/editors/render/render_opengl.cc b/source/blender/editors/render/render_opengl.cc index b23858400ac..ee2660dffb9 100644 --- a/source/blender/editors/render/render_opengl.cc +++ b/source/blender/editors/render/render_opengl.cc @@ -27,7 +27,7 @@ #include "DNA_object_types.h" #include "DNA_scene_types.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_camera.h" #include "BKE_context.hh" #include "BKE_customdata.hh" diff --git a/source/blender/editors/render/render_shading.cc b/source/blender/editors/render/render_shading.cc index b7ebf142fbb..e86fb9f318a 100644 --- a/source/blender/editors/render/render_shading.cc +++ b/source/blender/editors/render/render_shading.cc @@ -32,7 +32,7 @@ #include "BLT_translation.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_appdir.hh" #include "BKE_blender_copybuffer.hh" diff --git a/source/blender/editors/space_graph/graph_buttons.cc b/source/blender/editors/space_graph/graph_buttons.cc index ace51ed24ed..980e0a3a324 100644 --- a/source/blender/editors/space_graph/graph_buttons.cc +++ b/source/blender/editors/space_graph/graph_buttons.cc @@ -25,7 +25,7 @@ #include "BLT_translation.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_context.hh" #include "BKE_curve.hh" #include "BKE_fcurve.h" diff --git a/source/blender/editors/space_graph/graph_draw.cc b/source/blender/editors/space_graph/graph_draw.cc index aa96e29b295..45cbd74b97b 100644 --- a/source/blender/editors/space_graph/graph_draw.cc +++ b/source/blender/editors/space_graph/graph_draw.cc @@ -20,7 +20,7 @@ #include "DNA_space_types.h" #include "DNA_userdef_types.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_curve.hh" #include "BKE_fcurve.h" #include "BKE_nla.h" diff --git a/source/blender/editors/space_nla/nla_tracks.cc b/source/blender/editors/space_nla/nla_tracks.cc index 8ca06b4231a..584ab30d087 100644 --- a/source/blender/editors/space_nla/nla_tracks.cc +++ b/source/blender/editors/space_nla/nla_tracks.cc @@ -17,7 +17,7 @@ #include "BLI_utildefines.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_context.hh" #include "BKE_global.hh" #include "BKE_layer.hh" diff --git a/source/blender/editors/space_outliner/outliner_tools.cc b/source/blender/editors/space_outliner/outliner_tools.cc index 40cf67b5378..0adbbe548c3 100644 --- a/source/blender/editors/space_outliner/outliner_tools.cc +++ b/source/blender/editors/space_outliner/outliner_tools.cc @@ -37,7 +37,7 @@ #include "BLI_utildefines.h" #include "BLI_vector.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_armature.hh" #include "BKE_collection.hh" diff --git a/source/blender/editors/space_outliner/tree/tree_element_id.cc b/source/blender/editors/space_outliner/tree/tree_element_id.cc index 38d2158786f..0875b7836f1 100644 --- a/source/blender/editors/space_outliner/tree/tree_element_id.cc +++ b/source/blender/editors/space_outliner/tree/tree_element_id.cc @@ -11,7 +11,7 @@ #include "BLI_utildefines.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "../outliner_intern.hh" #include "common.hh" diff --git a/source/blender/editors/transform/transform_convert.cc b/source/blender/editors/transform/transform_convert.cc index ad049113205..e887f9e6cf8 100644 --- a/source/blender/editors/transform/transform_convert.cc +++ b/source/blender/editors/transform/transform_convert.cc @@ -20,7 +20,7 @@ #include "BLI_math_vector.hh" #include "BKE_action.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_context.hh" #include "BKE_global.hh" #include "BKE_layer.hh" diff --git a/source/blender/editors/transform/transform_convert_nla.cc b/source/blender/editors/transform/transform_convert_nla.cc index 147b5e72650..dd6c770d354 100644 --- a/source/blender/editors/transform/transform_convert_nla.cc +++ b/source/blender/editors/transform/transform_convert_nla.cc @@ -17,7 +17,7 @@ #include "BLI_math_matrix.h" #include "BLI_math_vector.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_context.hh" #include "BKE_nla.h" diff --git a/source/blender/io/common/intern/abstract_hierarchy_iterator.cc b/source/blender/io/common/intern/abstract_hierarchy_iterator.cc index 7187b450b1b..fa8a2e92430 100644 --- a/source/blender/io/common/intern/abstract_hierarchy_iterator.cc +++ b/source/blender/io/common/intern/abstract_hierarchy_iterator.cc @@ -10,7 +10,7 @@ #include #include -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_duplilist.hh" #include "BKE_key.hh" #include "BKE_object.hh" diff --git a/source/blender/makesrna/intern/rna_ID.cc b/source/blender/makesrna/intern/rna_ID.cc index b85173df328..d1ea56e310b 100644 --- a/source/blender/makesrna/intern/rna_ID.cc +++ b/source/blender/makesrna/intern/rna_ID.cc @@ -217,7 +217,7 @@ const IDFilterEnumPropertyItem rna_enum_id_type_filter_items[] = { # include "BLO_readfile.hh" -# include "BKE_anim_data.h" +# include "BKE_anim_data.hh" # include "BKE_global.hh" /* XXX, remove me */ # include "BKE_idprop.h" # include "BKE_idtype.hh" diff --git a/source/blender/makesrna/intern/rna_access.cc b/source/blender/makesrna/intern/rna_access.cc index 38816b6bf9f..800ed49f6ac 100644 --- a/source/blender/makesrna/intern/rna_access.cc +++ b/source/blender/makesrna/intern/rna_access.cc @@ -32,7 +32,7 @@ #include "BLF_api.hh" #include "BLT_translation.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_collection.hh" #include "BKE_context.hh" #include "BKE_fcurve.h" diff --git a/source/blender/makesrna/intern/rna_animation.cc b/source/blender/makesrna/intern/rna_animation.cc index 8eeb1b873a8..462c0b729a8 100644 --- a/source/blender/makesrna/intern/rna_animation.cc +++ b/source/blender/makesrna/intern/rna_animation.cc @@ -91,7 +91,7 @@ const EnumPropertyItem rna_enum_keying_flag_api_items[] = { # include "BLI_math_base.h" -# include "BKE_anim_data.h" +# include "BKE_anim_data.hh" # include "BKE_animsys.h" # include "BKE_fcurve.h" # include "BKE_nla.h" diff --git a/source/blender/makesrna/intern/rna_fcurve.cc b/source/blender/makesrna/intern/rna_fcurve.cc index 5f9114abbd5..8a2dccc9a57 100644 --- a/source/blender/makesrna/intern/rna_fcurve.cc +++ b/source/blender/makesrna/intern/rna_fcurve.cc @@ -219,7 +219,7 @@ static StructRNA *rna_FModifierType_refine(PointerRNA *ptr) /* ****************************** */ -# include "BKE_anim_data.h" +# include "BKE_anim_data.hh" # include "BKE_fcurve.h" # include "BKE_fcurve_driver.h" diff --git a/source/blender/makesrna/intern/rna_mesh_api.cc b/source/blender/makesrna/intern/rna_mesh_api.cc index 4e3d8b6a0cb..e3ade55f73f 100644 --- a/source/blender/makesrna/intern/rna_mesh_api.cc +++ b/source/blender/makesrna/intern/rna_mesh_api.cc @@ -23,7 +23,7 @@ # include "DNA_mesh_types.h" -# include "BKE_anim_data.h" +# include "BKE_anim_data.hh" # include "BKE_attribute.hh" # include "BKE_mesh.h" # include "BKE_mesh.hh" diff --git a/source/blender/makesrna/intern/rna_nla.cc b/source/blender/makesrna/intern/rna_nla.cc index 9f92b8ad355..8574e5fb2bd 100644 --- a/source/blender/makesrna/intern/rna_nla.cc +++ b/source/blender/makesrna/intern/rna_nla.cc @@ -76,7 +76,7 @@ const EnumPropertyItem rna_enum_nla_mode_extend_items[] = { # include /* needed for some of the validation stuff... */ -# include "BKE_anim_data.h" +# include "BKE_anim_data.hh" # include "BKE_fcurve.h" # include "BKE_nla.h" diff --git a/source/blender/makesrna/intern/rna_sequencer.cc b/source/blender/makesrna/intern/rna_sequencer.cc index b3bf399c249..f3ecbd8be69 100644 --- a/source/blender/makesrna/intern/rna_sequencer.cc +++ b/source/blender/makesrna/intern/rna_sequencer.cc @@ -24,7 +24,7 @@ #include "BLT_translation.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_sound.h" diff --git a/source/blender/makesrna/intern/rna_space.cc b/source/blender/makesrna/intern/rna_space.cc index c145fbded37..ee7bb2541c8 100644 --- a/source/blender/makesrna/intern/rna_space.cc +++ b/source/blender/makesrna/intern/rna_space.cc @@ -551,7 +551,7 @@ static const EnumPropertyItem rna_enum_curve_display_handle_items[] = { # include "BLI_path_util.h" # include "BLI_string.h" -# include "BKE_anim_data.h" +# include "BKE_anim_data.hh" # include "BKE_brush.hh" # include "BKE_context.hh" # include "BKE_global.hh" diff --git a/source/blender/makesrna/intern/rna_tracking.cc b/source/blender/makesrna/intern/rna_tracking.cc index 04875ad1454..0fe6cd9642d 100644 --- a/source/blender/makesrna/intern/rna_tracking.cc +++ b/source/blender/makesrna/intern/rna_tracking.cc @@ -35,7 +35,7 @@ # include "BLI_math_vector.h" -# include "BKE_anim_data.h" +# include "BKE_anim_data.hh" # include "BKE_animsys.h" # include "BKE_node.hh" # include "BKE_report.hh" diff --git a/source/blender/python/intern/bpy_rna_anim.cc b/source/blender/python/intern/bpy_rna_anim.cc index 50d0bb4f933..d6ded7162db 100644 --- a/source/blender/python/intern/bpy_rna_anim.cc +++ b/source/blender/python/intern/bpy_rna_anim.cc @@ -24,7 +24,7 @@ #include "ANIM_keyframing.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_context.hh" #include "BKE_fcurve.h" diff --git a/source/blender/render/intern/pipeline.cc b/source/blender/render/intern/pipeline.cc index 76c1ad16040..43262b53ef4 100644 --- a/source/blender/render/intern/pipeline.cc +++ b/source/blender/render/intern/pipeline.cc @@ -39,7 +39,7 @@ #include "BLT_translation.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" /* <------ should this be here?, needed for sequencer update */ #include "BKE_callbacks.hh" #include "BKE_camera.h" diff --git a/source/blender/sequencer/intern/prefetch.cc b/source/blender/sequencer/intern/prefetch.cc index 5b6b256d1b2..7abd5159bad 100644 --- a/source/blender/sequencer/intern/prefetch.cc +++ b/source/blender/sequencer/intern/prefetch.cc @@ -22,7 +22,7 @@ #include "IMB_imbuf.hh" #include "IMB_imbuf_types.hh" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_global.hh" #include "BKE_layer.hh" diff --git a/source/blender/sequencer/intern/render.cc b/source/blender/sequencer/intern/render.cc index 737c2bb2cd0..ef74547274e 100644 --- a/source/blender/sequencer/intern/render.cc +++ b/source/blender/sequencer/intern/render.cc @@ -26,7 +26,7 @@ #include "BLI_path_util.h" #include "BLI_rect.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_animsys.h" #include "BKE_fcurve.h" #include "BKE_global.hh" diff --git a/source/blender/windowmanager/intern/wm_operators.cc b/source/blender/windowmanager/intern/wm_operators.cc index cc70b3946f8..8205114c680 100644 --- a/source/blender/windowmanager/intern/wm_operators.cc +++ b/source/blender/windowmanager/intern/wm_operators.cc @@ -48,7 +48,7 @@ #include "BLI_time.h" #include "BLI_utildefines.h" -#include "BKE_anim_data.h" +#include "BKE_anim_data.hh" #include "BKE_brush.hh" #include "BKE_colortools.hh" #include "BKE_context.hh"