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>2016-06-23 10:36:24 +0300
committerJoshua Leung <aligorith@gmail.com>2016-06-23 18:18:34 +0300
commit58acc184c4d53af53f245505a5952653e75856f3 (patch)
tree6454b8b6c709aa7c23a719827f1ebf3bc0b1bbb1 /source/blender/editors/animation
parentb6a898b3dba5b762863baa40868e58a46279682e (diff)
Code Cleanup - Circle/Lasso select in the Graph Editor
Diffstat (limited to 'source/blender/editors/animation')
-rw-r--r--source/blender/editors/animation/keyframes_edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/animation/keyframes_edit.c b/source/blender/editors/animation/keyframes_edit.c
index 08a7355694b..cd00b963482 100644
--- a/source/blender/editors/animation/keyframes_edit.c
+++ b/source/blender/editors/animation/keyframes_edit.c
@@ -542,7 +542,7 @@ static short ok_bezier_region(KeyframeEditData *ked, BezTriple *bezt)
* only called from #ok_bezier_region_lasso
*/
static bool bezier_region_lasso_test(
- const struct KeyframeEdit_LassoData *data_lasso,
+ const KeyframeEdit_LassoData *data_lasso,
const float xy[2])
{
if (BLI_rctf_isect_pt_v(data_lasso->rectf_scaled, xy)) {
@@ -579,7 +579,7 @@ static short ok_bezier_region_lasso(KeyframeEditData *ked, BezTriple *bezt)
* only called from #ok_bezier_region_circle
*/
static bool bezier_region_circle_test(
- const struct KeyframeEdit_CircleData *data_circle,
+ const KeyframeEdit_CircleData *data_circle,
const float xy[2])
{
if (BLI_rctf_isect_pt_v(data_circle->rectf_scaled, xy)) {