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:
-rw-r--r--source/blender/editors/mask/mask_shapekey.c2
-rw-r--r--source/blender/editors/transform/transform_conversions.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/mask/mask_shapekey.c b/source/blender/editors/mask/mask_shapekey.c
index 9dcc0aa063d..30c960bda0f 100644
--- a/source/blender/editors/mask/mask_shapekey.c
+++ b/source/blender/editors/mask/mask_shapekey.c
@@ -296,7 +296,7 @@ static int mask_shape_key_rekey_exec(bContext *C, wmOperator *op)
masklay_shape_b = masklay_shape;
masklay_shape_lastsel = NULL;
- /* this will be freed below, sep over selection */
+ /* this will be freed below, step over selection */
masklay_shape_next = masklay_shape->next;
}
}
diff --git a/source/blender/editors/transform/transform_conversions.c b/source/blender/editors/transform/transform_conversions.c
index 64369213839..7f475e35110 100644
--- a/source/blender/editors/transform/transform_conversions.c
+++ b/source/blender/editors/transform/transform_conversions.c
@@ -3015,7 +3015,7 @@ static int gpf_cmp_frame(void *thunk, void *a, void *b)
return 0;
}
-static int maskley_shape_cmp_frame(void *thunk, void *a, void *b)
+static int masklay_shape_cmp_frame(void *thunk, void *a, void *b)
{
MaskLayerShape *frame_a = a;
MaskLayerShape *frame_b = b;
@@ -3069,7 +3069,7 @@ static void posttrans_mask_clean(Mask *mask)
MaskLayerShape *masklay_shape, *masklay_shape_next;
bool is_double = false;
- BLI_sortlist_r(&masklay->splines_shapes, &is_double, maskley_shape_cmp_frame);
+ BLI_sortlist_r(&masklay->splines_shapes, &is_double, masklay_shape_cmp_frame);
if (is_double) {
for (masklay_shape = masklay->splines_shapes.first; masklay_shape; masklay_shape = masklay_shape_next) {