From 676d790d29ead413a9619aa94005c5248d274cb2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 23 Nov 2015 13:49:52 +1100 Subject: Cleanup: use `rna_enum_` prefix for RNA enums Definitions could shadow local vars. --- source/blender/compositor/operations/COM_BlurBaseOperation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/compositor') diff --git a/source/blender/compositor/operations/COM_BlurBaseOperation.cpp b/source/blender/compositor/operations/COM_BlurBaseOperation.cpp index ce42de7a149..dc5f80e55f3 100644 --- a/source/blender/compositor/operations/COM_BlurBaseOperation.cpp +++ b/source/blender/compositor/operations/COM_BlurBaseOperation.cpp @@ -118,7 +118,7 @@ float *BlurBaseOperation::make_dist_fac_inverse(float rad, int size, int falloff for (i = -size; i <= size; i++) { val = 1.0f - fabsf((float)i * fac); - /* keep in sync with proportional_falloff_curve_only_items */ + /* keep in sync with rna_enum_proportional_falloff_curve_only_items */ switch (falloff) { case PROP_SMOOTH: /* ease - gives less hard lines for dilate/erode feather */ -- cgit v1.2.3