From 6f389f1bb856df2a1d9d29bc542b5ad76748a84e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 6 Jan 2022 19:00:35 +1100 Subject: Cleanup: move public doc-strings into headers Some recent changes re-introduced public-style doc-strings in the source file. --- source/blender/editors/animation/keyframes_general.c | 4 ---- source/blender/editors/animation/keyframes_keylist.cc | 1 - 2 files changed, 5 deletions(-) (limited to 'source/blender/editors/animation') diff --git a/source/blender/editors/animation/keyframes_general.c b/source/blender/editors/animation/keyframes_general.c index 8aac1e9b779..5d82b3b9939 100644 --- a/source/blender/editors/animation/keyframes_general.c +++ b/source/blender/editors/animation/keyframes_general.c @@ -345,10 +345,6 @@ static bool find_fcurve_segment(FCurve *fcu, return in_segment; } -/* Return a list of FCurveSegment with a start index and a length. - * A segment is a continuous selection of keyframes. - * Keys that have BEZT_FLAG_IGNORE_TAG set are treated as unselected. - * The caller is responsible for freeing the memory. */ ListBase find_fcurve_segments(FCurve *fcu) { ListBase segments = {NULL, NULL}; diff --git a/source/blender/editors/animation/keyframes_keylist.cc b/source/blender/editors/animation/keyframes_keylist.cc index 8dae46766fa..e4641ead2d2 100644 --- a/source/blender/editors/animation/keyframes_keylist.cc +++ b/source/blender/editors/animation/keyframes_keylist.cc @@ -850,7 +850,6 @@ bool actkeyblock_is_valid(const ActKeyColumn *ac) return ac != nullptr && ac->next != nullptr && ac->totblock > 0; } -/* Checks if ActKeyBlock should exist... */ int actkeyblock_get_valid_hold(const ActKeyColumn *ac) { /* check that block is valid */ -- cgit v1.2.3