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:
authorJoshua Leung <aligorith@gmail.com>2009-12-30 13:21:45 +0300
committerJoshua Leung <aligorith@gmail.com>2009-12-30 13:21:45 +0300
commit35d629c97b9debd28378c8872ad5975d19f93420 (patch)
treec062109e419ef2c6ee34a306625ecfb783725cf2 /source/blender/editors/animation/keyframes_edit.c
parent76a0fa5590aa52961ae344810f890f90a7b3194e (diff)
* Assorted comments/warnings fixes for animation code
* Made the dotted lines drawn for markers extend all the way to the top of the relevant views * Shortened the default names for markers
Diffstat (limited to 'source/blender/editors/animation/keyframes_edit.c')
-rw-r--r--source/blender/editors/animation/keyframes_edit.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/editors/animation/keyframes_edit.c b/source/blender/editors/animation/keyframes_edit.c
index b3b0d6308a7..828ff9792be 100644
--- a/source/blender/editors/animation/keyframes_edit.c
+++ b/source/blender/editors/animation/keyframes_edit.c
@@ -455,11 +455,11 @@ void ANIM_editkeyframes_refresh(bAnimContext *ac)
filter= ANIMFILTER_CURVESONLY;
ANIM_animdata_filter(ac, &anim_data, filter, ac->data, ac->datatype);
- /* loop over ipo-curves that are likely to have been edited, and check them */
+ /* loop over F-Curves that are likely to have been edited, and check them */
for (ale= anim_data.first; ale; ale= ale->next) {
FCurve *fcu= ale->key_data;
- /* make sure keyframes in F-curve are all in order, and handles are in valid positions */
+ /* make sure keyframes in F-Curve are all in order, and handles are in valid positions */
sort_time_fcurve(fcu);
testhandles_fcurve(fcu);
}
@@ -936,7 +936,6 @@ static short select_bezier_invert(BeztEditData *bed, BezTriple *bezt)
return 0;
}
-// NULL
BeztEditFunc ANIM_editkeyframes_select(short selectmode)
{
switch (selectmode) {