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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2022-04-19 03:17:41 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2022-04-19 03:17:41 +0300
commitadcce654e38307b180ebdfa3699a80018ac95f63 (patch)
tree67ae5a9673e33290da6a4c17f4e2d8d23532b5a7 /source/blender/sequencer
parent549f68149d8d5a90067d3488ebffb522ff6c3d8c (diff)
Cleanup: Use correct capitalization of "F-Curve"
Diffstat (limited to 'source/blender/sequencer')
-rw-r--r--source/blender/sequencer/SEQ_animation.h6
-rw-r--r--source/blender/sequencer/intern/strip_edit.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/sequencer/SEQ_animation.h b/source/blender/sequencer/SEQ_animation.h
index f2c66393b65..b8f74e5a510 100644
--- a/source/blender/sequencer/SEQ_animation.h
+++ b/source/blender/sequencer/SEQ_animation.h
@@ -20,15 +20,15 @@ void SEQ_free_animdata(struct Scene *scene, struct Sequence *seq);
void SEQ_offset_animdata(struct Scene *scene, struct Sequence *seq, int ofs);
struct GSet *SEQ_fcurves_by_strip_get(const struct Sequence *seq, struct ListBase *fcurve_base);
/**
- * Move all `F-curves` from `scene` to `list`.
+ * Move all `F-Curves` from `scene` to `list`.
*/
void SEQ_animation_backup_original(struct Scene *scene, struct ListBase *list);
/**
- * Move all `F-curves` from `list` to `scene`.
+ * Move all `F-Curves` from `list` to `scene`.
*/
void SEQ_animation_restore_original(struct Scene *scene, struct ListBase *list);
/**
- * Duplicate `F-curves` used by `seq` from `list` to `scene`.
+ * Duplicate `F-Curves` used by `seq` from `list` to `scene`.
*/
void SEQ_animation_duplicate(struct Scene *scene, struct Sequence *seq, struct ListBase *list);
diff --git a/source/blender/sequencer/intern/strip_edit.c b/source/blender/sequencer/intern/strip_edit.c
index d678518e3b0..7aa81f5ae8a 100644
--- a/source/blender/sequencer/intern/strip_edit.c
+++ b/source/blender/sequencer/intern/strip_edit.c
@@ -461,7 +461,7 @@ Sequence *SEQ_edit_strip_split(Main *bmain,
return NULL;
}
- /* Store `F-curves`, so original ones aren't renamed. */
+ /* Store `F-Curves`, so original ones aren't renamed. */
ListBase fcurves_original_backup = {NULL, NULL};
SEQ_animation_backup_original(scene, &fcurves_original_backup);